summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Kwak <82421531+jkwak-work@users.noreply.github.com>2025-08-20 09:34:41 -0700
committerGitHub <noreply@github.com>2025-08-20 16:34:41 +0000
commita26a11ff5c3f14401bbbbbc4b6e3731056618138 (patch)
tree24cf40afe18eca1687214991ab2edb0402020aa3
parent113327194d4cf750af6265a560615850a8e7e6fb (diff)
Enabling via-glsl test for "merge" event (#8133)
There was a case where a PR passed CI test a long time ago, and when it is merged, it caused a regression. We like to run via-glsl test when it gets merged to prevent it.
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7c351082d..a6bc35a46 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -300,7 +300,7 @@ jobs:
PATH=$bin_dir:$PATH tools/slangc-test/test.sh
- name: Test Slang via glsl
# Run GLSL backend tests on release for pull requests, and not on merge_group, to reduce CI load.
- if: steps.filter.outputs.should-run == 'true' && matrix.platform != 'wasm' && matrix.full-gpu-tests && matrix.config == 'release' && github.event_name == 'pull_request'
+ if: steps.filter.outputs.should-run == 'true' && matrix.platform != 'wasm' && matrix.full-gpu-tests && matrix.config == 'release'
run: |
export SLANG_RUN_SPIRV_VALIDATION=1
export SLANG_USE_SPV_SOURCE_LANGUAGE_UNKNOWN=1