-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -253,7 +253,29 @@ jobs: | |
- name: Run Miri tests, no_std | ||
run: | | ||
cargo +nightly miri test --no-default-features -p all-is-cubes universe:: | ||
no_std: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
|
||
# The build is faster *without* this cache. | ||
# - uses: Swatinem/[email protected] | ||
|
||
- name: Install Rust toolchain | ||
run: | | ||
rustup toolchain install stable --profile minimal | ||
rustup target add thumbv7em-none-eabihf | ||
- name: no_std build | ||
run: | | ||
cargo check --no-default-features -p all-is-cubes --target thumbv7em-none-eabihf | ||
- name: no_std lint | ||
run: | | ||
cargo clippy --no-default-features -p all-is-cubes --target thumbv7em-none-eabihf | ||
fuzz: | ||
# Don't spend time on fuzzing if the build failed indicating the code is bad other ways | ||
needs: build | ||
|