✅ Use arm-none-eabi-gcc
with hard-float ABI
#5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
rust: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- run: sudo apt-get -qq install 'gcc-arm-none-eabi=15:10.3*' | |
- run: cargo build | |
- run: cargo fmt --all -- --check | |
- run: cargo clippy --all-features -- -D warnings |