From 579f4db029cb872f9c504aa8b86cae72ddabaaf7 Mon Sep 17 00:00:00 2001 From: Joe Taber Date: Thu, 22 Jun 2023 21:46:52 -0500 Subject: [PATCH] Try -Z workaround https://github.com/johnterickson/cargo2junit/issues/79 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73296baff..aacc7a4a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: if: matrix.extra run: | cargo install cargo2junit --force - cargo test --all -- -Z unstable-options --format json --report-time | cargo2junit > cargo_test_results.xml + RUSTC_BOOTSTRAP=1 cargo test --all -- -Z unstable-options --format json --report-time | cargo2junit > cargo_test_results.xml - name: Publish cargo test results artifact if: matrix.extra uses: actions/upload-artifact@v3