-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Focus on burn-wgpu failing tests on windows platform
- Loading branch information
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,12 +121,21 @@ jobs: | |
if: matrix.os == 'windows-2022' | ||
uses: napokue/[email protected] | ||
|
||
- name: run checks & tests | ||
# - name: run checks & tests | ||
# env: | ||
# CI_RUN: 1 | ||
# WGPU_DX12_COMPILER: dxc | ||
# WGPU_BACKEND: matrix.wgpu_backend | ||
# run: ${{ matrix.coverage-flags }} cargo xtask run-checks ${{ matrix.test }} | ||
|
||
- name: (temp) run burn_wgpu tests | ||
env: | ||
CI_RUN: 1 | ||
WGPU_DX12_COMPILER: dxc | ||
WGPU_BACKEND: matrix.wgpu_backend | ||
run: ${{ matrix.coverage-flags }} cargo xtask run-checks ${{ matrix.test }} | ||
run: | | ||
cd burn-wgpu | ||
cargo test | ||
- name: Codecov upload | ||
if: matrix.os == 'ubuntu-22.04' && matrix.rust == 'stable' && matrix.test == 'std' | ||
|