Open issue on native test failure (#8699)

Co-authored-by: Mateusz Rzeszutek <mrzeszutek@splunk.com>
This commit is contained in:
Trask Stalnaker 2023-06-13 07:54:27 -07:00 committed by GitHub
parent 220a486fbf
commit ee986a035b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -1,9 +1,11 @@
name: GraalVM native tests name: GraalVM native tests
on: on:
schedule: schedule:
# daily at 4:00 UTC # daily at 4:00 UTC
- cron: '0 4 * * *' - cron: '0 4 * * *'
workflow_dispatch: workflow_dispatch:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -22,3 +24,11 @@ jobs:
gu --version gu --version
native-image --version native-image --version
./gradlew nativeTest ./gradlew nativeTest
workflow-notification:
needs:
- build
if: always()
uses: ./.github/workflows/reusable-workflow-notification.yml
with:
success: ${{ needs.build.result == 'success' }}