Skip to content

Commit 665d090

Browse files
committed
(maint) Ensure docker-compose is installed on test runners
Docker-compose does not appear to be installed on ubuntu-latest runners. Ensure it is installed before bringing up test cluster.
1 parent b2018df commit 665d090

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/actions/docker_setup/action.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ runs:
66
- name: Bring up containers
77
shell: bash
88
run: |
9+
sudo apt install docker-compose
910
docker-compose -f spec/docker-compose.yml build --parallel
1011
docker-compose -f spec/docker-compose.yml up -d

.github/actions/sudo_setup/action.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ runs:
66
- name: Bring up containers
77
shell: bash
88
run: |
9+
sudo apt install docker-compose
910
docker-compose -f spec/docker-compose.yml build --parallel
1011
docker-compose -f spec/docker-compose.yml up -d
1112
- name: Create non-sudo user

0 commit comments

Comments
 (0)