Skip to content

Commit

Permalink
(maint) Ensure docker-compose is installed on test runners
Browse files Browse the repository at this point in the history
Docker-compose does not appear to be installed on ubuntu-latest runners. Ensure it is installed before bringing up test cluster.
  • Loading branch information
donoghuc committed Apr 2, 2024
1 parent b2018df commit 665d090
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/actions/docker_setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ runs:
- name: Bring up containers
shell: bash
run: |
sudo apt install docker-compose
docker-compose -f spec/docker-compose.yml build --parallel
docker-compose -f spec/docker-compose.yml up -d
1 change: 1 addition & 0 deletions .github/actions/sudo_setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ runs:
- name: Bring up containers
shell: bash
run: |
sudo apt install docker-compose
docker-compose -f spec/docker-compose.yml build --parallel
docker-compose -f spec/docker-compose.yml up -d
- name: Create non-sudo user
Expand Down

0 comments on commit 665d090

Please sign in to comment.