From 016d5cb61ebaac873d310bddc24e8e699aba9e4e Mon Sep 17 00:00:00 2001 From: Jordan Rose Date: Fri, 13 Oct 2023 17:43:14 -0700 Subject: [PATCH] Always run tests in bash This is only necessary for the windows-gnu target, but causes no issues anywhere else. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50e6fab6..1f9e396b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -205,11 +205,13 @@ jobs: - if: "!matrix.check_only" run: cargo test --target ${{ matrix.target }} ${{ matrix.extra_test_args }} name: Run tests + shell: bash env: ${{ matrix.custom_env }} - if: matrix.check_only # We `build` because we want the linker to verify we are cross-compiling correctly. run: cargo build --target ${{ matrix.target }} --tests name: Build tests + shell: bash env: ${{ matrix.custom_env }} - name: Test boring-sys cargo publish # Running `cargo publish --dry-run` tests two things: