Skip to content

Commit

Permalink
Merge pull request #3130 from openSUSE/fix_ci
Browse files Browse the repository at this point in the history
Install docker-compose before running it
  • Loading branch information
dirkmueller committed Aug 6, 2024
2 parents 7caf9a6 + 5b7af6d commit 315454a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
- name: Setup path
run: sed -i -e "s,../..:,$PWD:," dist/ci/docker-compose.yml

- name: install docker-compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Run tests
run: docker-compose -f dist/ci/docker-compose.yml run test
env:
Expand Down Expand Up @@ -88,6 +93,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: install docker-compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Validate gocd config
run: cd gocd && sh generate.sh && git diff --exit-code

Expand Down

0 comments on commit 315454a

Please sign in to comment.