summaryrefslogtreecommitdiff
path: root/.github/workflows/windows.yml
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2024-02-23 19:05:23 -0800
committerGitHub <noreply@github.com>2024-02-23 19:05:23 -0800
commita1827ee5e9b8088b23db3fa688b7bd62b7bbe9ac (patch)
treeeab251421b70f2ee64a0e420e270ed6295bd2987 /.github/workflows/windows.yml
parent401d8cdb12ae69aeb216c80c9bb90240d8359649 (diff)
SPIRV Fixes. (#3622)
* Use SpvSourceLanguageSlang enum. * Fix spirv entrypoint interface. * Cleanup. * Add error on unknown spirv opcode. * Fix CI. * Fix.
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r--.github/workflows/windows.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 91843d4dd..3dc4abfb5 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -68,6 +68,7 @@ jobs:
$spirvToolsBinDir = ".\external\slang-binaries\spirv-tools\windows-${{matrix.testPlatform}}\bin\";
$env:Path += ";$slangTestBinDir;$spirvToolsBinDir";
$env:SLANG_RUN_SPIRV_VALIDATION='1';
+ $env:SLANG_USE_SPV_SOURCE_LANGUAGE_UNKNOWN='1';
Expand-Archive "vk_swiftshader_windows_${{matrix.testPlatform}}.zip" -DestinationPath $slangTestBinDir;
& "$slangTestBinDir\slang-test.exe" -api all-dx12 -appveyor -bindir "$slangTestBinDir\" -platform ${{matrix.testPlatform}} -configuration ${{matrix.configuration}} -category ${{matrix.testCategory}} -expected-failure-list tests/expected-failure-github.txt 2>&1;