diff options
| author | Simon Kallweit <64953474+skallweitNV@users.noreply.github.com> | 2025-10-16 19:18:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-16 17:18:31 +0000 |
| commit | d8b732d7ba6d31a724cb18dc93f60d8bcc522c19 (patch) | |
| tree | da0fe463651b94b1388688842171153cd2af29cb /.github/workflows | |
| parent | 7e35123bae1cd3b032fdffcafd600aa78394bf2d (diff) | |
Update slang-rhi (#8709)
- Update to latest slang-rhi
- Enable additional slang-rhi tests for OptiX 8.0 and 8.1
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci-slang-test.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci-slang-test.yml b/.github/workflows/ci-slang-test.yml index f84e5139a..06b16ae55 100644 --- a/.github/workflows/ci-slang-test.yml +++ b/.github/workflows/ci-slang-test.yml @@ -145,6 +145,16 @@ jobs: export SLANG_RHI_EXCLUDE_TESTS="md-clear*,cmd-copy*,cmd-upload*,fence*,staging-heap*,texture-create*" "$bin_dir/slang-rhi-tests" -check-devices -tce="$SLANG_RHI_EXCLUDE_TESTS" + - name: Run slang-rhi tests (OptiX 8.0) + if: inputs.os == 'windows' || inputs.os == 'linux' + run: | + "$bin_dir/slang-rhi-tests" -check-devices -optix-version=80000 -tc="ray-tracing-*.cuda" + + - name: Run slang-rhi tests (OptiX 8.1) + if: inputs.os == 'windows' || inputs.os == 'linux' + run: | + "$bin_dir/slang-rhi-tests" -check-devices -optix-version=80100 -tc="ray-tracing-*.cuda" + # Run slangpy tests when: # 1. full-gpu-tests is enabled AND # 2. Either it's a pull request OR config is release |
