Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
srijs committed May 20, 2024
1 parent 993587e commit c1fb6f4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,21 @@ jobs:
env:
ASAN_OPTIONS: "detect_odr_violation=0 detect_leaks=0"
RUST_BACKTRACE: "1"
cross-test:
name: cross-test
runs-on: ubuntu-latest
strategy:
matrix:
target:
- i686-unknown-linux-gnu
- aarch64-unknown-linux-gnu
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update nightly --no-self-update
- name: Install Cross
run: cargo install --force cross
- name: Test
run: cross test --target=${{ matrix.target }}
- name: Check with no default features
run: cross check --target=${{ matrix.target }} --no-default-features

0 comments on commit c1fb6f4

Please sign in to comment.