Browse Source

CI: Reduce verbosity of action output.

pull/245/head
weisj 3 years ago
parent
commit
ef96ce4598
No known key found for this signature in database
GPG Key ID: 31124CB75461DA2A
  1. 6
      .github/workflows/gradle.yml

6
.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

Loading…
Cancel
Save