We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bea4a96 commit af6e925Copy full SHA for af6e925
.github/workflows/ci.yml
@@ -42,9 +42,11 @@ jobs:
42
steps:
43
- uses: actions/checkout@v4
44
- uses: actions-rust-lang/setup-rust-toolchain@v1
45
-
46
- uses: taiki-e/install-action@cargo-binstall
47
- - run: cargo binstall iai-callgrind-runner --version $(cargo pkgid iai-callgrind | cut -d@ -f2)
+
+ # Using `--force` flag because the caching action has this bug:
48
+ # https://github.com/Swatinem/rust-cache/issues/204
49
+ - run: cargo binstall --force iai-callgrind-runner@$(cargo pkgid iai-callgrind | cut -d@ -f2)
50
51
- run: sudo apt-get update && sudo apt-get install -y valgrind
52
- run: cd ./benchmarks/runtime && ./run.sh ${{ matrix.benchmark }}
0 commit comments