Skip to content

Commit

Permalink
chore: fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Jun 22, 2024
1 parent 300f240 commit 1f47568
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/simba-ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,25 @@ jobs:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: clippy
- name: Check formatting
run: |
rustup install nightly
cargo +nightly clippy --all-features
run: cargo clippy --all-features
build-native:
runs-on: ubuntu-latest
env:
RUSTFLAGS: -D warnings
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: false
- name: Build --no-default-feature
run: cargo build --no-default-features;
- name: Build libm only
Expand All @@ -41,9 +50,7 @@ jobs:
- name: Build all features except libm
run: cargo build --features wide,rkyv-serialize,serde_serialize,partial_fixed_point_support;
- name: Build all features
run: |
rustup install nightly
cargo +nightly build --all-features
run: cargo +nightly build --all-features
build-wasm:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 1f47568

Please sign in to comment.