27
27
java-version : ${{ matrix.java }}
28
28
- name : Build Quarkus main
29
29
run : |
30
- git clone https://github.com/quarkusio/quarkus.git && cd quarkus && ./mvnw -B -s .github/mvn-settings.xml clean install -Dquickly -Prelocations -Dno-test-modules
30
+ git clone https://github.com/quarkusio/quarkus.git && cd quarkus && ./mvnw -B --no-transfer-progress - s .github/mvn-settings.xml clean install -Dquickly -Prelocations -Dno-test-modules
31
31
- name : Tar Maven Repo
32
32
shell : bash
33
33
run : tar -I 'pigz -9' -cf maven-repo.tgz -C ~ .m2/repository
69
69
run : tar -xzf maven-repo.tgz -C ~
70
70
- name : Test in JVM mode
71
71
run : |
72
- mvn -fae -V -B -s .github/mvn-settings.xml -Dvalidate-format clean test
72
+ mvn -fae -V -B --no-transfer-progress - s .github/mvn-settings.xml -Dvalidate-format clean test
73
73
- name : Zip Artifacts
74
74
if : failure()
75
75
run : |
@@ -129,7 +129,7 @@ jobs:
129
129
done
130
130
131
131
MODULES_ARG="${CHANGED// /,}"
132
- mvn -am -fae -V -B -s .github/mvn-settings.xml -fae -pl $MODULES_ARG clean verify -Dnative \
132
+ mvn -am -fae -V -B --no-transfer-progress - s .github/mvn-settings.xml -fae -pl $MODULES_ARG clean verify -Dnative \
133
133
-Dquarkus.native.container-build=true -Dquarkus.native.native-image-xmx=4g \
134
134
-Dquarkus.native.builder-image=quay.io/quarkus/${{ matrix.image }}
135
135
- name : Zip Artifacts
@@ -175,7 +175,7 @@ jobs:
175
175
- name : Test in JVM mode
176
176
shell : bash
177
177
run : |
178
- mvn -fae -V -B -s .github/mvn-settings.xml clean test
178
+ mvn -fae -V -B --no-transfer-progress - s .github/mvn-settings.xml clean test
179
179
- name : Setup GraalVM
180
180
id : setup-graalvm
181
181
uses : graalvm/setup-graalvm@v1
@@ -190,7 +190,7 @@ jobs:
190
190
- name : Smoke Test in Native mode
191
191
shell : bash
192
192
run : |
193
- mvn -V -B -s .github/mvn-settings.xml -fae clean verify -Dnative \
193
+ mvn -V -B --no-transfer-progress - s .github/mvn-settings.xml -fae clean verify -Dnative \
194
194
-Dquarkus.native.native-image-xmx=6g \
195
195
-pl '003-quarkus-many-extensions'
196
196
- name : Zip Artifacts
0 commit comments