Skip to content

Commit

Permalink
Work around nextest macro lib compatibility bug
Browse files Browse the repository at this point in the history
This sets the `RUSTUP_WINDOWS_PATH_ADD_BIN` environment variable in
the multi-platform test job, to work around
nextest-rs/nextest#1493 which is keeping
the test runner from working on Windows.

See also ruffle-rs/ruffle#16342, which gave
the idea for this, and various other projects that have made such
changes, linked inhttps://github.com/nextest-rs/nextest/issues/1493.
  • Loading branch information
EliahKagan committed May 17, 2024
1 parent d3588ca commit 95f057f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ jobs:
tool: nextest
- name: "Test (nextest)"
run: cargo nextest run --all --no-fail-fast
env:
# Works around https://github.com/nextest-rs/nextest/issues/1493.
RUSTUP_WINDOWS_PATH_ADD_BIN: '1'

test-32bit:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 95f057f

Please sign in to comment.