mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-26 06:00:21 +00:00
ci: add timeout to build workflow caching (#957)
* ci: add timeout and skip for cache in build workflow * use for all
This commit is contained in:
parent
cb08b19646
commit
2dfb8c490f
1 changed files with 7 additions and 1 deletions
8
.github/workflows/build_releases.yml
vendored
8
.github/workflows/build_releases.yml
vendored
|
@ -142,8 +142,10 @@ jobs:
|
|||
|
||||
# We disable this for cross builds, as it seems to cause some issues.
|
||||
- name: Enable Rust cache
|
||||
uses: Swatinem/rust-cache@359a70e43a0bb8a13953b04a90f76428b4959bb6 # 2.2.0
|
||||
if: matrix.info.cross != true
|
||||
timeout-minutes: 5
|
||||
continue-on-error: true
|
||||
uses: Swatinem/rust-cache@359a70e43a0bb8a13953b04a90f76428b4959bb6 # 2.2.0
|
||||
with:
|
||||
shared-key: build-cache-${{ matrix.info.target }}
|
||||
save-if: "false"
|
||||
|
@ -236,6 +238,8 @@ jobs:
|
|||
|
||||
- name: Enable Rust cache
|
||||
uses: Swatinem/rust-cache@359a70e43a0bb8a13953b04a90f76428b4959bb6 # 2.2.0
|
||||
timeout-minutes: 5
|
||||
continue-on-error: true
|
||||
with:
|
||||
key: "build-cache-x86_64-pc-windows-msvc"
|
||||
save-if: "false"
|
||||
|
@ -328,6 +332,8 @@ jobs:
|
|||
|
||||
- name: Enable Rust cache
|
||||
if: matrix.info.cross != true
|
||||
timeout-minutes: 5
|
||||
continue-on-error: true
|
||||
uses: Swatinem/rust-cache@359a70e43a0bb8a13953b04a90f76428b4959bb6 # 2.2.0
|
||||
with:
|
||||
shared-key: build-cache-${{ matrix.info.target }}
|
||||
|
|
Loading…
Reference in a new issue