From c7a3f66f530a7a85cb1e99f015b9f76f3b5a0535 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Sat, 30 Apr 2022 10:40:32 -0700 Subject: [PATCH] ci: turn off caching in bench job (#1691) --- .github/workflows/bench.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index bb791cd34a365..392417d6a1ed1 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -44,11 +44,12 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 + # Turn off the caching on self-hosted jobs # Enable caching of the 'librocksdb-sys' crate by additionally caching the # 'librocksdb-sys' src directory which is managed by cargo - - uses: bmwill/rust-cache@v1 # Fork of 'Swatinem/rust-cache' which allows caching additional paths - with: - path: ~/.cargo/registry/src/**/librocksdb-sys-* + # - uses: bmwill/rust-cache@v1 # Fork of 'Swatinem/rust-cache' which allows caching additional paths + # with: + # path: ~/.cargo/registry/src/**/librocksdb-sys-* - name: Install huniq, and cache the binary uses: baptiste0928/cargo-install@v1 with: