summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-01-05 20:38:49 -0500
committerGitHub <noreply@github.com>2023-01-05 20:38:49 -0500
commit2dfb8c490fafcf91f2921dfc1a47391bbe502ae5 (patch)
treefc77e790b86dcc90edd48a379232029863f53f34 /.github
parentcb08b1964660cac38d8998c49ba734a239b71bda (diff)
ci: add timeout to build workflow caching (#957)
* ci: add timeout and skip for cache in build workflow * use for all
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_releases.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/build_releases.yml b/.github/workflows/build_releases.yml
index 3dbc5248..8a03910c 100644
--- a/.github/workflows/build_releases.yml
+++ b/.github/workflows/build_releases.yml
@@ -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 }}