From 280d7982bf20d9c17c8339420556838d4f47e64c Mon Sep 17 00:00:00 2001 From: Aaron Feickert <66188213+AaronFeickert@users.noreply.github.com> Date: Wed, 7 Feb 2024 13:35:02 -0600 Subject: [PATCH] Additional CI target --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1867a5..7a75a8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,13 +43,15 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable with: - targets: wasm32-unknown-unknown + targets: wasm32-unknown-unknown, thumbv8m.main-none-eabi - name: Release build (no features) run: cargo build --release --all-targets --no-default-features - name: Release build (all features) run: cargo build --release --all-targets --all-features - name: Release build (WASM) run: cargo build --release --target wasm32-unknown-unknown --no-default-features + - name: Release build (metal) + run: cargo build --release --target thumbv8m.main-none-eabi --no-default-features test: runs-on: ubuntu-latest steps: