Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 95f057f

Browse files
committedMay 17, 2024
Work around nextest macro lib compatibility bug
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.
1 parent d3588ca commit 95f057f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

Diff for: ‎.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ jobs:
8484
tool: nextest
8585
- name: "Test (nextest)"
8686
run: cargo nextest run --all --no-fail-fast
87+
env:
88+
# Works around https://github.com/nextest-rs/nextest/issues/1493.
89+
RUSTUP_WINDOWS_PATH_ADD_BIN: '1'
8790

8891
test-32bit:
8992
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)
Please sign in to comment.