Skip to content

Commit

Permalink
Merge pull request #26 from Sympatron/check-no-std
Browse files Browse the repository at this point in the history
Run CI job to ensure no-std compatibility
  • Loading branch information
sidcha authored Nov 12, 2024
2 parents 907916f + 7872924 commit f21b21e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ jobs:
with:
toolchain: stable
components: rustfmt, clippy
- run: cargo check
target: thumbv6m-none-eabi
- name: Cargo check
run: cargo check
- name: Install gcc-arm-none-eabi
run: sudo apt-get update && sudo apt-get install -y gcc-arm-none-eabi
- name: Cargo check no-std
run: cargo check --package libosdp --target thumbv6m-none-eabi --no-default-features
test:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit f21b21e

Please sign in to comment.