Skip to content

Commit

Permalink
CTS: do not continue on error
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kaizhangNV committed May 23, 2024
1 parent 8e15bdc commit 2fefb73
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/vk-gl-cts-nightly.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -12,7 +16,7 @@ jobs:
build:
runs-on: [Windows, self-hosted]
timeout-minutes: 100
continue-on-error: true
continue-on-error: false
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 2fefb73

Please sign in to comment.