This is an automated email from the ASF dual-hosted git repository.
ruanhang1993 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-cdc.git
The following commit(s) were added to refs/heads/master by this push:
new 8f2939e91 [hotfix][ci] Migrate to Docker Compose V2 (#3505)
8f2939e91 is described below
commit 8f2939e913fa650de2acca3af0720d4d12003342
Author: yuxiqian <[email protected]>
AuthorDate: Fri Aug 2 11:53:40 2024 +0800
[hotfix][ci] Migrate to Docker Compose V2 (#3505)
---
.github/workflows/flink_cdc.yml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/flink_cdc.yml b/.github/workflows/flink_cdc.yml
index 1cd5d2903..7e19a3813 100644
--- a/.github/workflows/flink_cdc.yml
+++ b/.github/workflows/flink_cdc.yml
@@ -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