Skip to content

Commit

Permalink
fix(ci): repro test failure from pre-release job in build job
Browse files Browse the repository at this point in the history
  • Loading branch information
sdd committed Dec 15, 2024
1 parent b78b00c commit 231cf64
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,13 @@ jobs:
toolchain: nightly
components: rustfmt,clippy

- name: Cargo test
- name: Cargo test (dev build)
run: |
cargo run --example build-float-doctest-tree --features="rkyv"
cargo run --example build-immutable-doctest-tree --features="rkyv"
cargo test --workspace --all-features
- name: Cargo test (release build)
env:
RUSTFLAGS: '-C target-cpu=native'
run: |
Expand Down

0 comments on commit 231cf64

Please sign in to comment.