summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorGangzheng Tong <tonggangzheng@gmail.com>2025-06-27 11:08:17 -0700
committerGitHub <noreply@github.com>2025-06-27 18:08:17 +0000
commita13dda4f214274a10d39f37c79622fc3e62da310 (patch)
tree3edccd0a9723527d5a485654f034ab204d6ccb89 /.github/workflows
parent5562215028adab99491a40241661f4c2238b2642 (diff)
Enable Vulkan Validation Layer in CI (#7543)
* Disable spirv-opt for the tests with debugfunction VVL errors * Enable VVL in CI * Add 2 expected failure tests until we update VVL to 1.4.319 which contains the fix * update slang-rhi * Revert "Disable spirv-opt for the tests with debugfunction VVL errors" This reverts commit 5327460057f533af81ea60a556e43abe805d5816.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 45e75357f..75824e3db 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -212,6 +212,8 @@ jobs:
echo "Checking $api ..." && echo "$smokeResult" | grep -q "Check $api: Supported"
done
echo "Printing CUDA version: ..." && nvcc --version
+ echo "Printing Vulkan SDK version: ..." && vulkaninfo | grep -i version
+
fi
if [[ "${{matrix.os}}" == "macos" ]]
@@ -236,7 +238,7 @@ jobs:
-expected-failure-list tests/expected-failure-github.txt \
-skip-reference-image-generation \
-show-adapter-info \
- -enable-debug-layers false
+ -enable-debug-layers true
else
"$bin_dir/slang-test" \
-use-test-server \
@@ -245,7 +247,7 @@ jobs:
-expected-failure-list tests/expected-failure-no-gpu.txt \
-skip-reference-image-generation \
-show-adapter-info \
- -enable-debug-layers false
+ -enable-debug-layers true
fi
- name: Run Slang examples
if: steps.filter.outputs.should-run == 'true' && matrix.platform != 'wasm' && matrix.full-gpu-tests