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
|
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' }}
|
Loading…
Reference in New Issue