From 14f6eab9eafe8563c70be2b1e9cfa03d68e54b15 Mon Sep 17 00:00:00 2001 From: Georgii Troitskii Date: Mon, 9 Sep 2024 10:45:49 +0200 Subject: [PATCH] Reduce log size in CI runs by suppressing download transfer progress --- .github/workflows/ci.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2807a6aa..21e09da6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -40,7 +40,7 @@ jobs: cache: 'maven' - name: Build with Maven run: | - mvn -V -B -s .github/mvn-settings.xml clean verify -DexcludeTags=product,native,codequarkus -Dgh.actions + mvn -V -B --no-transfer-progress -s .github/mvn-settings.xml clean verify -DexcludeTags=product,native,codequarkus -Dgh.actions - name: Zip Artifacts if: failure() run: | @@ -68,7 +68,7 @@ jobs: cache: 'maven' - name: Build with Maven run: | - mvn -V -B -s .github/mvn-settings.xml clean verify -DincludeTags="native" -DexcludeTags=product,codequarkus -Dquarkus.native.container-build=true -Dquarkus.native.container-runtime=docker -Dgh.actions + mvn -V -B --no-transfer-progress -s .github/mvn-settings.xml clean verify -DincludeTags="native" -DexcludeTags=product,codequarkus -Dquarkus.native.container-build=true -Dquarkus.native.container-runtime=docker -Dgh.actions - name: Zip Artifacts if: failure() run: | @@ -96,7 +96,7 @@ jobs: cache: 'maven' - name: Build with Maven run: | - mvn -V -B -s .github/mvn-settings.xml clean verify -Ptestsuite -DincludeTags=codequarkus -Dgh.actions + mvn -V -B --no-transfer-progress -s .github/mvn-settings.xml clean verify -Ptestsuite -DincludeTags=codequarkus -Dgh.actions - name: Zip Artifacts if: failure() run: | @@ -125,7 +125,7 @@ jobs: - name: Build with Maven shell: bash run: | - mvn -V -B -s .github/mvn-settings.xml clean verify -DexcludeTags='product,native,codequarkus' -Dgh.actions + mvn -V -B --no-transfer-progress -s .github/mvn-settings.xml clean verify -DexcludeTags='product,native,codequarkus' -Dgh.actions - name: Zip Artifacts if: failure() shell: bash @@ -168,7 +168,7 @@ jobs: uses: al-cheb/configure-pagefile-action@v1.4 - name: Build with Maven run: | - mvn -V -B -s .github/mvn-settings.xml clean verify -DincludeTags="native" -DexcludeTags="product,codequarkus" -Dquarkus.native.native-image-xmx=6g -Dgh.actions + mvn -V -B --no-transfer-progress -s .github/mvn-settings.xml clean verify -DincludeTags="native" -DexcludeTags="product,codequarkus" -Dquarkus.native.native-image-xmx=6g -Dgh.actions shell: cmd - name: Zip Artifacts if: failure()