[hotfix][ci] Migrate to Docker Compose V2 (#3505)

pull/3319/head
yuxiqian 6 months ago committed by GitHub
parent 1388cf9906
commit 8f2939e913
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -297,14 +297,14 @@ jobs:
run: FLINK_HOME=./flink-1.18.1/ ruby misc/patch_flink_conf.rb
working-directory: ./tools/mig-test
- name: Start containers
run: cd conf && docker-compose up -d
run: cd conf && docker compose up -d
working-directory: ./tools/mig-test
- name: Run migration tests
run: FLINK_HOME=./flink-1.18.1/ ruby run_migration_test.rb
working-directory: ./tools/mig-test
- name: Stop containers
if: always()
run: cd conf && docker-compose down
run: cd conf && docker compose down
working-directory: ./tools/mig-test
data_stream_migration_test:
@ -340,12 +340,12 @@ jobs:
run: cd datastream && ruby compile_jobs.rb
working-directory: ./tools/mig-test
- name: Start containers
run: cd conf && docker-compose up -d
run: cd conf && docker compose up -d
working-directory: ./tools/mig-test
- name: Run migration tests
run: cd datastream && FLINK_HOME=../flink-1.18.1/ ruby run_migration_test.rb
working-directory: ./tools/mig-test
- name: Stop containers
if: always()
run: cd conf && docker-compose down
run: cd conf && docker compose down
working-directory: ./tools/mig-test

Loading…
Cancel
Save