We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2faee30 commit cbb7787Copy full SHA for cbb7787
.github/workflows/cts.yml
@@ -99,9 +99,12 @@ jobs:
99
if: matrix.os == 'ubuntu-24.04'
100
uses: ./.github/actions/install-mesa
101
102
+ # Mixing --llvm-cov with deno (rusty_v8) has linking problems.
103
+ # Explicitly set the backend to avoid EGL messages in output,
104
+ # because these tests check stdout.
105
- name: Test cts_runner
106
shell: bash
- run: cargo --locked xtask test --llvm-cov -p cts_runner
107
+ run: DENO_WEBGPU_BACKEND=${{ matrix.backend }} cargo --locked test -p cts_runner
108
109
- name: Run CTS
110
0 commit comments