Skip to content

Commit

Permalink
Fix "docker-compose" -> "docker compose" (#473)
Browse files Browse the repository at this point in the history
This was accomplished by running `make ci-mgmt` then removing the
problematic caching component.

Because this mirrored an automatic process, I'm going to merge without a
PR review.
  • Loading branch information
iwahbe committed Apr 4, 2024
1 parent e34caf0 commit 94d4361
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -495,8 +495,8 @@ jobs:
run: |-
pip3 install virtualenv==20.0.23
pip3 install pipenv
- name: Run docker-compose
run: docker-compose -f testing/docker-compose.yml up --build -d
- name: Run docker compose
run: docker compose -f testing/docker-compose.yml up --build -d
- name: Install dependencies
run: make install_${{ matrix.language}}_sdk
- name: Install gotestfmt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ jobs:
run: |-
pip3 install virtualenv==20.0.23
pip3 install pipenv
- name: Run docker-compose
run: docker-compose -f testing/docker-compose.yml up --build -d
- name: Run docker compose
run: docker compose -f testing/docker-compose.yml up --build -d
- name: Install dependencies
run: make install_${{ matrix.language}}_sdk
- name: Install gotestfmt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,8 @@ jobs:
run: |-
pip3 install virtualenv==20.0.23
pip3 install pipenv
- name: Run docker-compose
run: docker-compose -f testing/docker-compose.yml up --build -d
- name: Run docker compose
run: docker compose -f testing/docker-compose.yml up --build -d
- name: Install dependencies
run: make install_${{ matrix.language}}_sdk
- name: Install gotestfmt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ jobs:
run: |-
pip3 install virtualenv==20.0.23
pip3 install pipenv
- name: Run docker-compose
run: docker-compose -f testing/docker-compose.yml up --build -d
- name: Run docker compose
run: docker compose -f testing/docker-compose.yml up --build -d
- name: Install dependencies
run: make install_${{ matrix.language}}_sdk
- name: Install gotestfmt
Expand Down

0 comments on commit 94d4361

Please sign in to comment.