forked from kernelci/kernelci-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(workflows): Fix broken workflows
All of sudden workflows are not working anymore, as docker-compose is missing. ``` Run docker-compose -f test-docker-compose.yaml down /home/runner/work/_temp/99b8e55a-c49f-4174-934d-3578b404c126.sh: line 1: docker-compose: command not found Error: Process completed with exit code 127. ``` Signed-off-by: Denys Fedoryshchenko <[email protected]>
- Loading branch information
1 parent
6adad5b
commit ad4a4cc
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,12 @@ jobs: | |
echo "[email protected]" >> .env | ||
echo "EMAIL_PASSWORD=random" >> .env | ||
- name: Install necessary packages | ||
run: | | ||
export DEBIAN_FRONTEND=noninteractive | ||
sudo apt-get update | ||
sudo apt-get install -y docker-compose docker.io | ||
- name: Build docker images | ||
run: docker-compose -f test-docker-compose.yaml build --no-cache | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,12 @@ jobs: | |
echo "[email protected]" >> .env | ||
echo "EMAIL_PASSWORD=random" >> .env | ||
- name: Install necessary packages | ||
run: | | ||
export DEBIAN_FRONTEND=noninteractive | ||
sudo apt-get update | ||
sudo apt-get install -y docker-compose docker.io | ||
- name: Build docker images | ||
run: docker-compose -f test-docker-compose.yaml build --no-cache | ||
|
||
|