Skip to content

Commit

Permalink
added build script that tests no_std-builds
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Mar 28, 2021
1 parent 040003b commit 3cda58f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions check-build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
echo "checks that this builds on std+no_std + that all tests run"
cargo build --all-targets
cargo build --all-targets --release
cargo test --all-targets
cargo test --all-targets --release
rustup target add thumbv7em-none-eabihf
cargo check --target thumbv7em-none-eabihf --no-default-features --features "microfft-complex"
cargo check --target thumbv7em-none-eabihf --no-default-features --features "microfft-real"

0 comments on commit 3cda58f

Please sign in to comment.