Skip to content

Commit

Permalink
Use coloring when running maven.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Sep 16, 2022
1 parent 572cf0c commit 6008727
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/autograding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
check-latest: true
cache: 'maven'
- name: Compile, Test and Analysis
run: mvn -V -ntp clean verify -Dmaven.test.failure.ignore=true
run: mvn -V --color always -ntp clean verify -Dmaven.test.failure.ignore=true
- name: Autograding
uses: uhafner/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
- name: Build with Maven
env:
BROWSER: chrome-container
run: mvn -V -ntp clean verify --file pom.xml '-Djenkins.test.timeout=5000' '-Dgpg.skip'
run: mvn -V --color always -ntp clean verify --file pom.xml '-Djenkins.test.timeout=5000' '-Dgpg.skip'
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
java-version: '11'
check-latest: true
- name: Generate coverage with JaCoCo
run: mvn -V -ntp clean verify jacoco:prepare-agent test integration-test jacoco:report --file pom.xml '-Dgpg.skip'
run: mvn -V --color always -ntp clean verify jacoco:prepare-agent test integration-test jacoco:report --file pom.xml '-Dgpg.skip'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 6008727

Please sign in to comment.