From ef96ce4598169ac61a1f837c79311c30f785a214 Mon Sep 17 00:00:00 2001 From: weisj <31143295+weisJ@users.noreply.github.com> Date: Tue, 22 Jun 2021 22:05:14 +0200 Subject: [PATCH] CI: Reduce verbosity of action output. --- .github/workflows/gradle.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 80f9b72d..23691a8b 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -22,7 +22,7 @@ jobs: - name: Build & Test uses: eskatos/gradle-command-action@v1 with: - arguments: build test -PskipAutostyle --info --no-daemon + arguments: build test -PskipAutostyle --no-daemon wrapper-cache-enabled: true dependencies-cache-enabled: true configuration-cache-enabled: true @@ -47,7 +47,7 @@ jobs: - name: Build & Test env: PROPS_GITHUB: "-PgithubAccessToken=${{ secrets.GITHUB_TOKEN }}" - run: xvfb-run -a -server-num=1 --server-args="-screen 0 2000x3000x16" ./gradlew build test -PskipAutostyle -PfailIfLibraryMissing=true $(echo $PROPS_GITHUB) --info --no-daemon + run: xvfb-run -a -server-num=1 --server-args="-screen 0 2000x3000x16" ./gradlew build test -PskipAutostyle -PfailIfLibraryMissing=true $(echo $PROPS_GITHUB) --no-daemon - name: Upload Test Results if: ${{ always() }} uses: actions/upload-artifact@v1 @@ -73,7 +73,7 @@ jobs: - name: Build & Test uses: eskatos/gradle-command-action@v1 with: - arguments: build test -PskipAutostyle --info --no-daemon + arguments: build test -PskipAutostyle --no-daemon wrapper-cache-enabled: true dependencies-cache-enabled: true configuration-cache-enabled: true