1
0
Fork 0

Prevent GitHub actions caches from blowing up

This would cause Windows builds to fail because they run out of disk
space.
This commit is contained in:
Robbert van der Helm 2022-10-30 14:43:42 +01:00
parent 456655b269
commit cec0a7a8a5
3 changed files with 3 additions and 3 deletions

View file

@ -46,7 +46,7 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.name }}-${{ matrix.cross-target }}-cargo-${{ hashFiles('**/Cargo.lock') }}
key: ${{ runner.name }}-${{ matrix.cross-target }}
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1

View file

@ -33,7 +33,7 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
key: ${{ runner.name }}-${{ matrix.cross-target }}
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1

View file

@ -43,7 +43,7 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
key: ${{ runner.name }}-${{ matrix.cross-target }}
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1