From ab01e9417e0b89b7fd76288dc88011a200a6d608 Mon Sep 17 00:00:00 2001 From: Georgii Troitskii Date: Mon, 9 Sep 2024 09:49:59 +0200 Subject: [PATCH] Reduce log size in CI runs by suppressing download transfer progress --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5255c48..6b7f2cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,6 @@ jobs: check-latest: true cache: 'maven' - name: Build with Maven - run: mvn -s .github/mvn-settings.xml clean test -Dts.limit-extensions=1 + run: mvn -ntp -s .github/mvn-settings.xml clean test -Dts.limit-extensions=1 - name: Verify extension that needs special properties - run: mvn -s .github/mvn-settings.xml clean test -Dts.includes-combinations-only-with-extensions=oidc -Dts.limit-extensions=1 + run: mvn -ntp -s .github/mvn-settings.xml clean test -Dts.includes-combinations-only-with-extensions=oidc -Dts.limit-extensions=1