Skip to content

Commit

Permalink
Merge #944
Browse files Browse the repository at this point in the history
944: Run cargo-careful in CI r=taiki-e a=taiki-e

https://github.com/RalfJung/cargo-careful

This allows to catch UB like #940.

Co-authored-by: Taiki Endo <[email protected]>
  • Loading branch information
bors[bot] and taiki-e authored Dec 27, 2022
2 parents 8903ff0 + ec4fee1 commit 1acda58
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,18 @@ jobs:
- name: miri
run: ./ci/miri.sh

# Run cargo-careful.
careful:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup toolchain install nightly --component rust-src && rustup default nightly
- name: Install cargo-careful
run: cargo install cargo-careful --locked --debug
- name: Run cargo-careful
run: ./ci/careful.sh

# Run sanitizers.
san:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -222,6 +234,7 @@ jobs:
- rustfmt
- clippy
- miri
- careful
- san
- loom
- docs
Expand Down
8 changes: 8 additions & 0 deletions ci/careful.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
set -euxo pipefail
IFS=$'\n\t'
cd "$(dirname "$0")"/..

export RUSTFLAGS="${RUSTFLAGS:-} -Z randomize-layout"

cargo careful test --all --all-features --exclude benchmarks -- --test-threads=1

0 comments on commit 1acda58

Please sign in to comment.