Skip to content

Commit c099b54

Browse files
committed
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 in nextest-rs/nextest#1493.
1 parent d3588ca commit c099b54

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.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)