Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/bors.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ status = [
"test (aarch64-apple-darwin)",
"test (x86_64-apple-darwin)",
]
timeout_sec = 7200
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