Skip to content

Commit 5b8d4d7

Browse files
authored
chore: invalidate Lake CI cache (#10587)
This PR invalidates the CI cache for the Linux Lake build job by bumping the version of the CI cache key. The CI cache is broken due to a change in the output format in build traces. This will be fixed in #10586, but this should prevent further breakages of PRs in the meantime.
1 parent db8c77a commit 5b8d4d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ jobs:
116116
build/stage1/**/*.ir
117117
build/stage1/**/*.c
118118
build/stage1/**/*.c.o*' || '' }}
119-
key: ${{ matrix.name }}-build-v3-${{ github.sha }}
119+
key: ${{ matrix.name }}-build-v4-${{ github.sha }}
120120
# fall back to (latest) previous cache
121121
restore-keys: |
122-
${{ matrix.name }}-build-v3
122+
${{ matrix.name }}-build-v4
123123
# open nix-shell once for initial setup
124124
- name: Setup
125125
run: |

.github/workflows/update-stage0.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ jobs:
6969
build/stage1/**/*.ir
7070
build/stage1/**/*.c
7171
build/stage1/**/*.c.o*
72-
key: Linux Lake-build-v3-${{ github.sha }}
72+
key: Linux Lake-build-v4-${{ github.sha }}
7373
# fall back to (latest) previous cache
7474
restore-keys: |
75-
Linux Lake-build-v3
75+
Linux Lake-build-v4
7676
- if: env.should_update_stage0 == 'yes'
7777
# sync options with `Linux Lake` to ensure cache reuse
7878
run: |

0 commit comments

Comments
 (0)