Skip to content

Commit

Permalink
always install docker-compose for the ubuntu integration tests (#163)
Browse files Browse the repository at this point in the history
always install docker-compose for the ubuntu integration tests

Newer ubuntu based action workers seem to have deprecated the docker-compose command, so we need to ensure the workflows always have it installed.

[noissue]

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner authored Aug 2, 2024
1 parent e6f8d22 commit c43e19e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ jobs:
if: matrix.TEST == 'docker' && matrix.os == 'macos-12'
uses: docker-practice/[email protected]

- name: (Linux) Install docker compose
if: matrix.TEST == 'docker' && matrix.os == 'ubuntu-latest'
run: |
curl -L -o /tmp/docker-compose https://github.com/docker/compose/releases/download/v2.29.1/docker-compose-linux-x86_64
install /tmp/docker-compose /usr/local/bin/
- name: setup .compose.env files
run: |
cp oci_env/.github/assets/${TEST}_compose.env oci_env/compose.env
Expand Down

0 comments on commit c43e19e

Please sign in to comment.