diff options
author | innovaker <66737976+innovaker@users.noreply.github.com> | 2020-12-02 18:26:47 +0000 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-14 12:41:25 -0500 |
commit | a4652fa25da83ae036613157fb566eb1ce1426fe (patch) | |
tree | dab53d9ff1a8c37a865b4e6f4e7ba3c920683202 /.github | |
parent | bd4b05f83a5f530ad31a59417ac26ceda7966a78 (diff) |
ci: add `4-` prefix to cache keys for v2.4.0 upgrade
A hack to invalidate GitHub actions/cache in CI builds/tests for the v2.4.0 upgrade.
PR: #467
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 8 | ||||
-rw-r--r-- | .github/workflows/test.yml | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ba3b874..0148b9e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -76,11 +76,11 @@ jobs: tools/ zephyr/ bootloader/ - key: 3-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }} + key: 4-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }} restore-keys: | - 3-${{ runner.os }}-build-${{ env.cache-name }}- - 3-${{ runner.os }}-build- - 3-${{ runner.os }}- + 4-${{ runner.os }}-build-${{ env.cache-name }}- + 4-${{ runner.os }}-build- + 4-${{ runner.os }}- timeout-minutes: 2 continue-on-error: true - name: West init diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e594d3..a9cba24 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,11 +32,11 @@ jobs: tools/ zephyr/ bootloader/ - key: 3-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }} + key: 4-${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }} restore-keys: | - 3-${{ runner.os }}-build-${{ env.cache-name }}- - 3-${{ runner.os }}-build- - 3-${{ runner.os }}- + 4-${{ runner.os }}-build-${{ env.cache-name }}- + 4-${{ runner.os }}-build- + 4-${{ runner.os }}- timeout-minutes: 2 continue-on-error: true - name: West init |