Include cts_runner tests in CTS jobs (#8547)

* Include cts_runner tests in CTS jobs

* Don't use llvm-cov for cts_runner tests
This commit is contained in:
Andy Leiserson 2025-12-02 10:06:09 -08:00 committed by GitHub
parent 218b65f9a8
commit 76f8c2c603
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 }}