Skip to content

Commit 957ef1a

Browse files
committed
ci: see if caching is causing build failures
Signed-off-by: Jim Crossley <[email protected]>
1 parent e001b9c commit 957ef1a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/rust_tests.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,20 @@ jobs:
3131
- run: sudo apt-get install -y musl musl-dev musl-tools cmake
3232
if: matrix.target == 'x86_64-unknown-linux-musl'
3333

34-
# Caching stuff
35-
- uses: actions/cache@v2
36-
with:
37-
path: |
38-
~/.cargo/bin/
39-
~/.cargo/registry/index/
40-
~/.cargo/registry/cache/
41-
~/.cargo/git/db/
42-
key: ${{ runner.os }}-cargo-deps-${{ hashFiles('**/Cargo.toml') }}
43-
- uses: actions/cache@v2
44-
with:
45-
path: |
46-
target/
47-
key: ${{ runner.os }}-cargo-target-${{ matrix.toolchain }}-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml') }}
34+
# # Caching stuff
35+
# - uses: actions/cache@v2
36+
# with:
37+
# path: |
38+
# ~/.cargo/bin/
39+
# ~/.cargo/registry/index/
40+
# ~/.cargo/registry/cache/
41+
# ~/.cargo/git/db/
42+
# key: ${{ runner.os }}-cargo-deps-${{ hashFiles('**/Cargo.toml') }}
43+
# - uses: actions/cache@v2
44+
# with:
45+
# path: |
46+
# target/
47+
# key: ${{ runner.os }}-cargo-target-${{ matrix.toolchain }}-${{ matrix.target }}-${{ hashFiles('**/Cargo.toml') }}
4848
- uses: actions-rs/toolchain@v1
4949
with:
5050
toolchain: ${{ matrix.toolchain }}

0 commit comments

Comments
 (0)