Skip to content

Commit

Permalink
(temp) test failure debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
eager-signal committed Nov 14, 2023
1 parent 22e2d5b commit a85f11e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,13 +212,14 @@ jobs:
if: endsWith(matrix.thing, '-android')
run: echo "CARGO_TARGET_$(echo ${{ matrix.target }} | tr \\-a-z _A-Z)_LINKER=$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/$(echo ${{ matrix.target }} | sed s/armv7/armv7a/)21-clang++" >> "$GITHUB_ENV"
- name: Build tests
if: "matrix.check_only"
# We `build` because we want the linker to verify we are cross-compiling correctly for check-only targets.
run: cargo build --target ${{ matrix.target }} --tests ${{ matrix.extra_test_args }}
shell: bash
env: ${{ matrix.custom_env }}
- name: Run tests
if: "!matrix.check_only"
run: cargo test --target ${{ matrix.target }} ${{ matrix.extra_test_args }}
run: RUST_BACKTRACE=1 cargo test --target ${{ matrix.target }} ${{ matrix.extra_test_args }} -- --nocapture
shell: bash
env: ${{ matrix.custom_env }}
- name: Test boring-sys cargo publish
Expand Down

0 comments on commit a85f11e

Please sign in to comment.