From ee986a035beafe57da36499bf666617ac8f5ac1e Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Tue, 13 Jun 2023 07:54:27 -0700 Subject: [PATCH] Open issue on native test failure (#8699) Co-authored-by: Mateusz Rzeszutek --- .../{native-tests.yml => native-tests-daily.yml} | 10 ++++++++++ 1 file changed, 10 insertions(+) rename .github/workflows/{native-tests.yml => native-tests-daily.yml} (74%) diff --git a/.github/workflows/native-tests.yml b/.github/workflows/native-tests-daily.yml similarity index 74% rename from .github/workflows/native-tests.yml rename to .github/workflows/native-tests-daily.yml index 214d388eb1..3a56699ed0 100644 --- a/.github/workflows/native-tests.yml +++ b/.github/workflows/native-tests-daily.yml @@ -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' }}