Skip to content

Commit

Permalink
[hotfix][ci] Migrate to Docker Compose V2 (#3505)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiqian authored Aug 2, 2024
1 parent 1388cf9 commit 8f2939e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/flink_cdc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

0 comments on commit 8f2939e

Please sign in to comment.