this might work
Rust/spacepackets/pipeline/head Build queued... Details
Rust/spacepackets/pipeline/pr-main Build queued... Details

This commit is contained in:
Robin Müller 2024-05-02 14:22:03 +02:00
parent b78bfe2114
commit af392d40d0
Signed by: muellerr
GPG Key ID: A649FB78196E3849
1 changed files with 6 additions and 1 deletions

View File

@ -34,12 +34,17 @@ jobs:
cross-check:
name: Check Cross-Compilation
runs-on: ubuntu-latest
strategy:
matrix:
target:
- armv7-unknown-linux-gnueabihf
- thumbv7em-none-eabihf
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: "armv7-unknown-linux-gnueabihf, thumbv7em-none-eabihf"
- run: cargo check --release --no-default-features
- run: cargo check --release --target=${{matrix.target}} --no-default-features
fmt:
name: Check formatting