File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,11 @@ name: CI
22
33on : [push, pull_request]
44
5+ env :
6+ MAVEN_ARGS : >-
7+ -V -B --no-transfer-progress
8+ -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
9+
510jobs :
611 linux_maven :
712 strategy :
1823 with :
1924 java-version : ${{ matrix.java }}
2025 - name : ' Test'
21- run : ./mvnw -V -B -U clean verify
26+ run : ./mvnw ${MAVEN_ARGS} -U clean verify
2227 linux_gradle :
2328 strategy :
2429 fail-fast : false
4550 with :
4651 java-version : 8
4752 - name : ' Test'
48- run : ./mvnw -V -B -U clean verify
53+ run : ./mvnw ${MAVEN_ARGS} -U clean verify
4954 mac_maven :
5055 name : ' Mac OS'
5156 runs-on : macos-latest
5661 with :
5762 java-version : 8
5863 - name : ' Test'
59- run : ./mvnw -V -B -U clean verify
64+ run : ./mvnw ${MAVEN_ARGS} -U clean verify
You can’t perform that action at this time.
0 commit comments