diff options
| author | cheneym2 <acheney@nvidia.com> | 2024-11-05 13:39:14 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-05 13:39:14 -0500 |
| commit | fc7de92000aa378da32c830ad0999eb46729ad43 (patch) | |
| tree | 990c6ed4e657c818cb2d454ab6389a43f3106222 /.github/workflows/ci.yml | |
| parent | b118451e301d734e3e783b3acdf871f3f6ea851c (diff) | |
Update slang-rhi and fix error handling (#5485)
Update slang-rhi to pick up a fix in webgpu compilation error handling.
In doRenderComparisonTestRun(), only return TestResult::Pass if the
shader is ran actually compiled.
A similar check is in place elsewhere in slang-test-main, but was
missed in doRenderComparisonTestRun().
Add two tests to the github CI skiplist, and use the skiplist in one
additional CI config that was running without it.
Closes 5291
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56e1df6b0..0491bbdc8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,7 +145,8 @@ jobs: -use-test-server \ -server-count 8 \ -category ${{ matrix.test-category }} \ - -api all-cpu + -api all-cpu \ + -expected-failure-list tests/expected-failure-github.txt elif [[ "${{matrix.has-gpu}}" == "true" ]]; then "$bin_dir/slang-test" \ -use-test-server \ |
