From 95f057f00213ba38040d220f93323ede8f2ab5d7 Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Fri, 17 May 2024 02:33:05 -0400 Subject: [PATCH] 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 https://github.com/nextest-rs/nextest/issues/1493 which is keeping the test runner from working on Windows. See also https://github.com/ruffle-rs/ruffle/pull/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. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 640f112c6ef..a3d6cb9c223 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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