| 12345678910111213141516171819202122 |
- name: ACL fix & migration integration tests
- on: workflow_dispatch
- jobs:
- test:
- runs-on: ubuntu-20.04
- container: emqx/build-env:erl23.2.7.2-emqx-3-ubuntu20.04
- strategy:
- fail-fast: true
- env:
- BASE_VERSION: "4.3.0"
- steps:
- - uses: actions/checkout@v2
- with:
- path: emqx
- - name: Prepare scripts
- run: |
- cp ./emqx/.ci/acl_migration_test/*.sh ./
- - name: Run tests
- run: |
- ./suite.sh emqx "$BASE_VERSION"
|