From 6ceaad71f2634da2a64c3da42e8407beb5899ed2 Mon Sep 17 00:00:00 2001 From: kaizhangNV Date: Thu, 23 May 2024 09:56:17 -0700 Subject: [PATCH] CTS: do not continue on error The CTS nightly stops report error because of `continue-on-error` is set to true. Set it false such that we can know as soon as it fails. TODO: Temporarily change the workflow to run per-PR to verify thing is correct. Will change it back when the PR is ready to merge. --- .github/workflows/vk-gl-cts-nightly.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/vk-gl-cts-nightly.yml b/.github/workflows/vk-gl-cts-nightly.yml index e04e936a33..e6c54719ac 100644 --- a/.github/workflows/vk-gl-cts-nightly.yml +++ b/.github/workflows/vk-gl-cts-nightly.yml @@ -1,8 +1,12 @@ name: VK-GL-CTS Nightly on: - schedule: - - cron: '00 07 * * *' + push: + branches: [ master ] + pull_request: + branches: [ master ] + # schedule: + # - cron: '00 07 * * *' concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true @@ -11,8 +15,8 @@ env: jobs: build: runs-on: [Windows, self-hosted] - timeout-minutes: 180 - continue-on-error: true + timeout-minutes: 100 + continue-on-error: false steps: - uses: actions/checkout@v4 with: