Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
large-packages: true
docker-images: true
swap-storage: true
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: |
# Install required dependencies
sudo apt-get update
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# Avoid shrinking the inputs when an error is found in the leaf/branch stage tests.
NO_STAGES_SHRINKING: true
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/install-fuse
- uses: dtolnay/rust-toolchain@stable
- run: cargo build --verbose --workspace --locked
Expand All @@ -26,15 +26,15 @@ jobs:
name: NOMT - check benchtop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/install-fuse
- uses: dtolnay/rust-toolchain@stable
- run: cargo check --verbose --manifest-path=benchtop/Cargo.toml --locked
loom_rw_pass_cell:
name: NOMT - loom rw_pass_cell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- run: RUSTFLAGS="--cfg loom" cargo test -p nomt --release --lib rw_pass_cell
doc:
Expand All @@ -44,15 +44,15 @@ jobs:
# Treat rustdoc warnings as errors.
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/install-fuse
- uses: dtolnay/rust-toolchain@stable
- run: cargo doc --verbose --workspace --document-private-items
fmt:
name: NOMT - fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --all --check
- run: cargo fmt --manifest-path=benchtop/Cargo.toml --check
Expand All @@ -63,7 +63,7 @@ jobs:
# This is a workaround for the blake3 crate.
CARGO_FEATURE_PURE: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-apple-darwin
Expand Down
Loading