Skip to content

Commit 7687ea3

Browse files
committed
Fix CI
1 parent 1d64774 commit 7687ea3

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
# if: steps.cache-deps.outputs.cache-hit != 'true'
138138
uses: actions/cache/save@v5
139139
with:
140-
key: ${{ steps.cache-deps.outputs.cache-primary-key }}
140+
key: ${{ steps.setup.outputs.deps-cache-key }}
141141
path: ${{ github.workspace }}/build/_deps
142142

143143
build:
@@ -156,6 +156,13 @@ jobs:
156156
with:
157157
submodules: recursive
158158

159+
- name: Copy Local GitHub Actions
160+
shell: bash
161+
run: |
162+
if [ -e modules/iris ]; then
163+
cp -r modules/iris/.github/actions .github/
164+
fi
165+
159166
- name: Setup Toolchain
160167
id: setup
161168
uses: ./.github/actions/setup-cpp
@@ -170,7 +177,7 @@ jobs:
170177

171178
- name: Cache CMake Dependencies (restore)
172179
id: cache-deps
173-
uses: actions/cache/restore@v4
180+
uses: actions/cache/restore@v5
174181
with:
175182
key: ${{ steps.setup.outputs.deps-cache-key }}
176183
path: ${{ github.workspace }}/build/_deps

0 commit comments

Comments
 (0)