From af21d38a806fd9a25065a7f8215d9bca5096cb8f Mon Sep 17 00:00:00 2001 From: matt rice Date: Fri, 9 Feb 2024 11:04:22 -0800 Subject: [PATCH] add armv7a-none-eabi build for msrv --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be0ff70..18d5869 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,6 +122,12 @@ jobs: - name: cargo clippy (all features) (auxiliary) run: cargo clippy --workspace --tests --benches --examples --all-features -- -D warnings + - run: rustup target add armv7a-none-eabi + + # We use armv7a as a no_std with AtomicU64 + - name: cargo build (no-default-features + libm, no_std target) + run: cargo build --no-default-features --features libm --target armv7a-none-eabi + clippy-stable-wasm: runs-on: ubuntu-latest name: cargo test (wasm32)