2023-04-11 16:47:06 +08:00
|
|
|
#!/usr/bin/env bash
|
2021-10-11 21:03:55 +08:00
|
|
|
|
2023-04-11 16:47:06 +08:00
|
|
|
cargo build --all-targets --verbose --features alloc
|
2021-10-11 21:03:55 +08:00
|
|
|
# use some random no_std target
|
|
|
|
rustup target add thumbv7em-none-eabihf
|
2023-04-11 16:47:06 +08:00
|
|
|
cargo build --verbose --target thumbv7em-none-eabihf --features alloc
|
|
|
|
cargo test --verbose --features alloc
|
2021-10-11 21:03:55 +08:00
|
|
|
|
|
|
|
cargo fmt -- --check
|
2023-04-11 16:47:06 +08:00
|
|
|
cargo +1.60.0 clippy --features alloc
|
|
|
|
cargo +1.60.0 doc --no-deps --document-private-items --features alloc
|