Always run tests in bash
This is only necessary for the windows-gnu target, but causes no issues anywhere else.
This commit is contained in:
parent
8b86852d8a
commit
016d5cb61e
|
|
@ -205,11 +205,13 @@ jobs:
|
||||||
- if: "!matrix.check_only"
|
- if: "!matrix.check_only"
|
||||||
run: cargo test --target ${{ matrix.target }} ${{ matrix.extra_test_args }}
|
run: cargo test --target ${{ matrix.target }} ${{ matrix.extra_test_args }}
|
||||||
name: Run tests
|
name: Run tests
|
||||||
|
shell: bash
|
||||||
env: ${{ matrix.custom_env }}
|
env: ${{ matrix.custom_env }}
|
||||||
- if: matrix.check_only
|
- if: matrix.check_only
|
||||||
# We `build` because we want the linker to verify we are cross-compiling correctly.
|
# We `build` because we want the linker to verify we are cross-compiling correctly.
|
||||||
run: cargo build --target ${{ matrix.target }} --tests
|
run: cargo build --target ${{ matrix.target }} --tests
|
||||||
name: Build tests
|
name: Build tests
|
||||||
|
shell: bash
|
||||||
env: ${{ matrix.custom_env }}
|
env: ${{ matrix.custom_env }}
|
||||||
- name: Test boring-sys cargo publish
|
- name: Test boring-sys cargo publish
|
||||||
# Running `cargo publish --dry-run` tests two things:
|
# Running `cargo publish --dry-run` tests two things:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue