Skip to content

Commit fd70ec2

Browse files
authored
Merge pull request #838 from cliserkad/no-transfer-progress
add --no-transfer-progress option to mvn commands
2 parents fdf200c + a294ca6 commit fd70ec2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/default-tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
2424
restore-keys: ${{ runner.os }}-m2
2525
- name: Run checkstyle with Maven
26-
run: mvn clean verify -B -Pcheckstyle -Dmaven.test.skip=true
26+
run: mvn clean verify -B -Pcheckstyle -Dmaven.test.skip=true --no-transfer-progress
2727

2828
test:
2929
name: Run basic test with Java ${{ matrix.java_version }}
@@ -50,7 +50,7 @@ jobs:
5050
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
5151
restore-keys: ${{ runner.os }}-m2
5252
- name: Build with Maven
53-
run: mvn clean verify javadoc:javadoc -B
53+
run: mvn clean verify javadoc:javadoc -B --no-transfer-progress
5454

5555
integration-test:
5656
name: Run integration test with Java ${{ matrix.java_version }} and Maven ${{ matrix.maven_version }}
@@ -100,9 +100,9 @@ jobs:
100100
- name: Verify Setup of Maven ${{ matrix.maven_version }}
101101
run: bash -c "echo ${M2_HOME}; echo ${PATH}; mvn -version"
102102
- name: Install a test version with Maven
103-
run: mvn clean install -B --settings=./.buildscript/settings.xml
103+
run: mvn clean install -B --settings=./.buildscript/settings.xml --no-transfer-progress
104104
- name: Run the local testversion with Maven
105-
run: mvn clean initialize -B -Pdemo -Dmaven.test.skip=true --settings=./.buildscript/settings.xml
105+
run: mvn clean initialize -B -Pdemo -Dmaven.test.skip=true --settings=./.buildscript/settings.xml --no-transfer-progress
106106
- name: Validate if the testversion has produced the desired output
107107
run: /bin/bash -c '[[ -f target/testing.properties ]] && cat target/testing.properties || exit 1;'
108108

@@ -131,7 +131,7 @@ jobs:
131131
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
132132
restore-keys: ${{ runner.os }}-m2
133133
- name: Run Coveralls with Maven
134-
run: mvn clean test jacoco:report coveralls:report -B -Pcoveralls -DrepoToken=${{ secrets.CoverallsRepoTokenSecret }}
134+
run: mvn clean test jacoco:report coveralls:report -B -Pcoveralls -DrepoToken=${{ secrets.CoverallsRepoTokenSecret }} --no-transfer-progress
135135

136136
deploy-snapshot:
137137
name: Deploy snapshot
@@ -156,7 +156,7 @@ jobs:
156156
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
157157
restore-keys: ${{ runner.os }}-m2
158158
- name: Deploy snapshot with Maven
159-
run: mvn clean deploy -B --settings=./.buildscript/settings.xml
159+
run: mvn clean deploy -B --settings=./.buildscript/settings.xml --no-transfer-progress
160160
env:
161161
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
162162
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}

0 commit comments

Comments
 (0)