Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/cts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,14 @@ jobs:
if: matrix.os == 'ubuntu-24.04'
uses: ./.github/actions/install-mesa

- name: run CTS
# Mixing --llvm-cov with deno (rusty_v8) has linking problems.
# Explicitly set the backend to avoid EGL messages in output,
# because these tests check stdout.
- name: Test cts_runner
shell: bash
run: DENO_WEBGPU_BACKEND=${{ matrix.backend }} cargo --locked test -p cts_runner

- name: Run CTS
shell: bash
run: cargo --locked xtask cts --llvm-cov --backend ${{ matrix.backend }}

Expand Down