diff options
Diffstat (limited to '.github')
| -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 |
