idbeta commented on a change in pull request #3061: URL: https://github.com/apache/apisix/pull/3061#discussion_r548015957
########## File path: .github/workflows/centos7.yml ########## @@ -0,0 +1,102 @@ +name: test_apisix_on_centos7 + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + test_apisix: + name: test_apisix_on_centos7 + runs-on: ubuntu-latest + + services: + etcd: + image: bitnami/etcd:3.4.0 + ports: + - 2379:2379 + - 2380:2380 + env: + ALLOW_NONE_AUTHENTICATION: yes + ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379 + + old_etcd: + image: bitnami/etcd:3.3.8 + ports: + - 3379:2379 + - 3380:2380 + env: + ALLOW_NONE_AUTHENTICATION: yes + ETCD_ADVERTISE_CLIENT_URLS: http://0.0.0.0:2379 + Review comment: I was debugging different cases step by step, so some dependencies were not used after installation. Now all cases have been debugged, so they are now used. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org