Skip to content

Commit

Permalink
Suppress progress output in maven
Browse files Browse the repository at this point in the history
Enable batch mode and explicitly suppress transfer progress to get rid
of unwanted log lines.
  • Loading branch information
Bananeweizen authored and mickaelistria committed Dec 7, 2021
1 parent e3b4f59 commit 0a21968
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/licensecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
${{ runner.os }}-maven-
- name: License check
run: |
mvn -U -V -e org.eclipse.dash:license-tool-plugin:license-check --file pom.xml
mvn -U -V -e -B -ntp org.eclipse.dash:license-tool-plugin:license-check --file pom.xml
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
- name: Build Tycho
run: |
cp toolchains-gh.xml ~/.m2/toolchains.xml
mvn -U -V -e clean install --file pom.xml
mvn -U -V -e -B -ntp clean install --file pom.xml
- name: Run Integration Tests
run: mvn -U -V -e -Pits -Dmaven.test.failure.ignore=true clean install --file tycho-its/pom.xml
run: mvn -U -V -e -B -ntp -Pits -Dmaven.test.failure.ignore=true clean install --file tycho-its/pom.xml
- name: Upload Test Results
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 0a21968

Please sign in to comment.