Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/actions/docker_setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ 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
docker compose -f spec/docker-compose.yml build --parallel
docker compose -f spec/docker-compose.yml up -d
5 changes: 2 additions & 3 deletions .github/actions/sudo_setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ 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
docker compose -f spec/docker-compose.yml build --parallel
docker compose -f spec/docker-compose.yml up -d
- name: Create non-sudo user
shell: bash
run: |
Expand Down