From 0902dc06c4c22b54061f8afe59e712c554e583dc Mon Sep 17 00:00:00 2001 From: "Dongjia \"toka\" Zhang" Date: Fri, 7 Mar 2025 14:26:58 +0100 Subject: [PATCH] Debug Windows CI (again) (#3052) --- .github/workflows/build_and_test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 4dfc7f2696..d778f66494 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -61,8 +61,12 @@ jobs: - name: Test the book (MacOS) if: runner.os == 'MacOS' run: cd docs && mdbook test -L ../target/debug/deps $(python3-config --ldflags | cut -d ' ' -f1) - - name: Run tests - run: cargo test -- --nocapture + - name: Run tests (Windows) + if: runner.os == 'Windows' + run: cargo test -- --test-threads 1 + - name: Run tests (Linux) + if: runner.os != 'Windows' + run: cargo test - name: Test libafl no_std run: cd libafl && cargo test --no-default-features - name: Test libafl_bolts no_std no_alloc