Skip to content

Commit

Permalink
ci: Add CI for no_std.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored and mbrubeck committed Oct 21, 2023
1 parent 2128411 commit 6fcb81f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,25 @@ jobs:
working-directory: fuzz
run: ./travis-fuzz.sh

no-std:
name: no_std
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
target: thumbv7m-none-eabi
- name: Cargo build
run: cargo build --verbose

build_result:
name: Result
runs-on: ubuntu-latest
needs:
- "ci"
- "no-std"

steps:
- name: Mark the job as successful
Expand Down

0 comments on commit 6fcb81f

Please sign in to comment.