unwinding/.github/workflows/ci.yml

62 lines
1.8 KiB
YAML
Raw Normal View History

2023-05-06 18:15:01 -05:00
name: CI
2023-05-06 18:33:30 -05:00
on: [push, pull_request]
2023-05-06 18:15:01 -05:00
env:
CARGO_TERM_COLOR: always
jobs:
2023-05-06 18:29:39 -05:00
test:
2023-05-06 18:33:30 -05:00
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
2023-05-06 19:03:15 -05:00
- i686-unknown-linux-gnu
2023-05-06 18:33:30 -05:00
- aarch64-unknown-linux-gnu
- riscv64gc-unknown-linux-gnu
build_std: [false]
include:
- target: riscv32gc-unknown-linux-gnu
build_std: true
2023-05-06 18:15:01 -05:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
2023-05-06 18:29:39 -05:00
- name: Install Rust
2023-05-06 18:33:30 -05:00
run: |
rustup update nightly
rustup default nightly
- name: Install Rust standard library source
if: matrix.build_std
run: rustup component add rust-src
- name: Install cross-compilation tools
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- name: Build example binary
if: '!matrix.build_std'
run: cargo build --release
- name: Build example binary
if: matrix.build_std
run: cargo build --release -Zbuild-std
- name: Run example binary
if: '!matrix.build_std'
2023-05-06 18:29:39 -05:00
run: (cargo run --release 2>&1 | tee ../run.log) || true
working-directory: example
2023-05-06 18:33:30 -05:00
- name: Run example binary
if: matrix.build_std
run: (cargo run --release -Zbuild-std 2>&1 | tee ../run.log) || true
working-directory: example
- name: Check log
2023-05-06 18:29:39 -05:00
run: |
grep "panicked at 'panic', example/src/main.rs:36:5" run.log
grep 'note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace' run.log
grep 'dropped: "string"' run.log
grep 'caught' run.log
grep "panicked at 'panic', example/src/main.rs:46:5" run.log
grep "panicked at 'panic on drop', example/src/main.rs:25:9" run.log
grep "thread panicked while processing panic. aborting." run.log