Skip to content

Commit

Permalink
Merge pull request #96 from vorner/dependabot/github_actions/Swatinem…
Browse files Browse the repository at this point in the history
…/rust-cache-2

Bump Swatinem/rust-cache from 1 to 2
  • Loading branch information
vorner authored Feb 23, 2024
2 parents 1919930 + 025b35b commit fa0c5cf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
profile: minimal

- name: Restore compile cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Restore previous benchmark data
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
default: true

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Run cargo-tarpaulin
uses: actions-rs/[email protected]
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
profile: minimal

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Build & test
env:
Expand All @@ -63,7 +63,7 @@ jobs:
profile: minimal

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Build & test
env:
Expand All @@ -86,7 +86,7 @@ jobs:
target: x86_64-unknown-linux-musl

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Build & test
env:
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
default: true

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Check links
run: cargo rustdoc --all-features -- -D warnings
Expand All @@ -145,7 +145,7 @@ jobs:
components: clippy

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Run clippy linter
run: cargo clippy --all --all-features --tests -- -D clippy::all -D warnings
Expand All @@ -165,7 +165,7 @@ jobs:
default: true

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Run clippy linter
run: cargo test --all --release --benches --all-features
Expand All @@ -185,7 +185,7 @@ jobs:
default: true

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Run check
run: rm Cargo.lock && cargo check --all-features
Expand All @@ -205,7 +205,7 @@ jobs:
default: true

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Run check
run: rm Cargo.lock && cargo check
Expand All @@ -226,7 +226,7 @@ jobs:
components: "miri"

- name: Restore cache
uses: Swatinem/rust-cache@v1
uses: Swatinem/rust-cache@v2

- name: Run miri
env:
Expand Down

1 comment on commit fa0c5cf

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Track benchmarks

Benchmark suite Current: fa0c5cf Previous: 1919930 Ratio
uncontended/load 6 ns/iter (± 0) 6 ns/iter (± 0) 1
uncontended/load_full 9 ns/iter (± 0) 9 ns/iter (± 0) 1
uncontended/load_many 14 ns/iter (± 0) 14 ns/iter (± 0) 1
uncontended/store 53 ns/iter (± 0) 53 ns/iter (± 0) 1
uncontended/cache 0 ns/iter (± 0) 0 ns/iter (± 0) 1
concurrent_loads/load 12 ns/iter (± 2) 12 ns/iter (± 0) 1
concurrent_loads/load_full 12 ns/iter (± 0) 12 ns/iter (± 0) 1
concurrent_loads/load_many 23 ns/iter (± 0) 23 ns/iter (± 0) 1
concurrent_loads/store 502 ns/iter (± 3) 492 ns/iter (± 2) 1.02
concurrent_loads/cache 1 ns/iter (± 0) 1 ns/iter (± 0) 1
concurrent_store/load 58 ns/iter (± 1) 56 ns/iter (± 3) 1.04
concurrent_store/load_full 67 ns/iter (± 6) 74 ns/iter (± 2) 0.91
concurrent_store/load_many 90 ns/iter (± 0) 86 ns/iter (± 1) 1.05
concurrent_store/store 440 ns/iter (± 23) 489 ns/iter (± 2) 0.90
concurrent_store/cache 1 ns/iter (± 0) 1 ns/iter (± 0) 1
utilities/access-map 6 ns/iter (± 0) 6 ns/iter (± 0) 1

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.