Skip to content

Commit

Permalink
Fix CI builds: replace usage of "docker compose" by "docker-compose"
Browse files Browse the repository at this point in the history
  • Loading branch information
murdos committed Apr 2, 2024
1 parent 568d990 commit 3d9ca98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
restore-keys: |
${{ runner.os }}-maven-
- name: 'Start local Sonar'
run: docker-compose -f src/main/docker/sonar.yml up -d
run: docker compose -f src/main/docker/sonar.yml up -d
- name: 'Init: install Node.js packages'
run: npm ci
- name: 'Lint: check'
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
working-directory: /tmp/jhlite/${{ matrix.app }}/
run: |
if [ -f 'src/main/docker/sonar.yml' ]; then
docker-compose -f src/main/docker/sonar.yml up -d
docker compose -f src/main/docker/sonar.yml up -d
${{ github.workspace }}/current-branch/tests-ci/wait_sonar.sh
docker ps -a
fi
Expand Down Expand Up @@ -459,7 +459,7 @@ jobs:
- name: 'Test: copy shell scripts'
if: steps.tests-requirement-check.outputs.execute_tests == 'true'
run: cp ./current-branch/tests-ci/start.sh /tmp/jhlite/${{ matrix.app }}/
- name: 'Test: start docker compose services'
- name: 'Test: start docker-compose services'
if: steps.tests-requirement-check.outputs.execute_tests == 'true'
working-directory: ./current-branch/tests-ci/
run: |
Expand Down

0 comments on commit 3d9ca98

Please sign in to comment.