Open issue on native test failure (#8699)
Co-authored-by: Mateusz Rzeszutek <mrzeszutek@splunk.com>
This commit is contained in:
parent
220a486fbf
commit
ee986a035b
|
@ -1,9 +1,11 @@
|
|||
name: GraalVM native tests
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# daily at 4:00 UTC
|
||||
- cron: '0 4 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
@ -22,3 +24,11 @@ jobs:
|
|||
gu --version
|
||||
native-image --version
|
||||
./gradlew nativeTest
|
||||
|
||||
workflow-notification:
|
||||
needs:
|
||||
- build
|
||||
if: always()
|
||||
uses: ./.github/workflows/reusable-workflow-notification.yml
|
||||
with:
|
||||
success: ${{ needs.build.result == 'success' }}
|
Loading…
Reference in New Issue