Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use cargo nextest for running our tests #2495

Merged
merged 1 commit into from
Feb 19, 2022
Merged
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
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
tool: clippy
kind: local
backends: dx12 # dx11
nextest_url: https://get.nexte.st/latest/windows-tar

- name: Windows Nightly x86_64
os: windows-2019
Expand Down Expand Up @@ -66,6 +67,7 @@ jobs:
tool: clippy
kind: local
backends: vulkan # gl
nextest_url: https://get.nexte.st/latest/linux

- name: Linux aarch64
os: ubuntu-20.04
Expand Down Expand Up @@ -139,6 +141,12 @@ jobs:
with:
key: ${{ matrix.target }}-a # suffix for cache busting

- name: download nextest
if: matrix.kind == 'local'
shell: bash
run: |
curl -LsSf ${{ matrix.nextest_url }} | tar xzf - -C ${CARGO_HOME:-~/.cargo}/bin
cwfitzgerald marked this conversation as resolved.
Show resolved Hide resolved

- name: add android apk to path
if: matrix.os == 'ubuntu-20.04' && matrix.target == 'aarch64-linux-android'
run: |
Expand Down Expand Up @@ -205,11 +213,11 @@ jobs:
# run wgpu-info
cargo run --bin wgpu-info
# run unit and player tests
cargo test -p wgpu-types -p wgpu-hal -p wgpu-core -p player --no-fail-fast
cargo nextest run -p wgpu-types -p wgpu-hal -p wgpu-core -p player --no-fail-fast
# run native tests
for backend in ${{ matrix.backends }}; do
echo "======= NATIVE TESTS $backend ======";
WGPU_BACKEND=$backend cargo test -p wgpu --no-fail-fast -- --nocapture --test-threads=1
WGPU_BACKEND=$backend cargo nextest run -p wgpu --no-fail-fast
done

fmt:
Expand Down