moonming commented on a change in pull request #3061: URL: https://github.com/apache/apisix/pull/3061#discussion_r549882521
########## File path: .github/workflows/centos7-ci.yml ########## @@ -0,0 +1,96 @@ +name: CI Centos7 + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + test_apisix: + name: run ci 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 am not sure if there are other similar codes ---------------------------------------------------------------- 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: [email protected]
