Skip to content

Commit

Permalink
Update carnival_ci.yml
Browse files Browse the repository at this point in the history
updated docker compose command
  • Loading branch information
hjwilli authored Aug 7, 2024
1 parent d52575a commit abfa36e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/carnival_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
- uses: actions/checkout@v2

- name: Build testing container
run: docker-compose -f ./docker-compose-test.yml build
run: docker compose -f ./docker-compose-test.yml build

- name: Run tests and publish coverage results

run: |
docker-compose -f docker-compose-test.yml run -e COVERALLS_REPO_TOKEN -w /appsrc/app app gradle test coveralls --console=plain --continue -Dtest.http=false
docker compose -f docker-compose-test.yml run -e COVERALLS_REPO_TOKEN -w /appsrc/app app gradle test coveralls --console=plain --continue -Dtest.http=false
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

Expand All @@ -35,10 +35,10 @@ jobs:

- name: Build Docker Images
run: |
docker-compose -f ./docker-compose-doc.yml build
docker compose -f ./docker-compose-doc.yml build
- name: Building Docs
run: |
docker-compose -f ./docker-compose-doc.yml up --abort-on-container-exit --force-recreate
docker compose -f ./docker-compose-doc.yml up --abort-on-container-exit --force-recreate
rm docs/.gitignore
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
Expand Down

0 comments on commit abfa36e

Please sign in to comment.