From af392d40d061b9df8cfa94e5fad1b25d84c2be9b Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 2 May 2024 14:22:03 +0200 Subject: [PATCH] this might work --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfef7ef..bfebe86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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