summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJay Kwak <82421531+jkwak-work@users.noreply.github.com>2025-07-29 21:30:00 -0700
committerGitHub <noreply@github.com>2025-07-30 04:30:00 +0000
commit4fdc967ebae5a85c7231db9d1279b7905c57a214 (patch)
tree58d1ff74c298df4b4043c74144601824de1bafb0 /.github
parentb8663a5d93e6e73d5e2d7e737cffd1efac055719 (diff)
Disable debug-layers temporarlily on CI (#7972)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c3444f1b7..ac28a3059 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -84,6 +84,9 @@ jobs:
runs-on: ["Windows", "self-hosted", "GCP-T4"]
has-gpu: true
server-count: 8
+ # Enable debug layers for all by default
+ - enable-debug-layers: true
+ - { os: windows, config: debug, enable-debug-alyers: false } # issue 7965
fail-fast: false
runs-on: ${{ matrix.runs-on }}
@@ -262,7 +265,7 @@ jobs:
-expected-failure-list tests/expected-failure-github.txt \
-skip-reference-image-generation \
-show-adapter-info \
- -enable-debug-layers true
+ -enable-debug-layers ${{ matrix.enable-debug-layers }}
else
"$bin_dir/slang-test" \
-use-test-server \
@@ -271,7 +274,7 @@ jobs:
-expected-failure-list tests/expected-failure-no-gpu.txt \
-skip-reference-image-generation \
-show-adapter-info \
- -enable-debug-layers true
+ -enable-debug-layers ${{ matrix.enable-debug-layers }}
fi
- name: Run Slang examples
if: steps.filter.outputs.should-run == 'true' && matrix.platform != 'wasm' && matrix.full-gpu-tests