Skip to content

Commit

Permalink
Update common files (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
micronaut-build authored Jul 15, 2021
1 parent 002f53d commit 66f4010
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,10 @@ jobs:
./gradlew check --continue --no-daemon
fi
env:
TESTCONTAINERS_RYUK_DISABLED: true
TESTCONTAINERS_RYUK_DISABLED: true
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v2
with:
check_name: GraalVM CE CI / Test Report (${{ matrix.java }})
report_paths: '**/build/test-results/test/TEST-*.xml'
8 changes: 7 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,13 @@ jobs:
- name: Build with Gradle
run: ./gradlew dependencyUpdates check --no-daemon --parallel --continue
env:
TESTCONTAINERS_RYUK_DISABLED: true
TESTCONTAINERS_RYUK_DISABLED: true
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v2
with:
check_name: Java CI / Test Report (${{ matrix.java }})
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Publish to Sonatype Snapshots
if: success() && github.event_name == 'push' && matrix.java == '8'
env:
Expand Down

0 comments on commit 66f4010

Please sign in to comment.