Skip to content

Commit f6321a3

Browse files
ci: cache action should now point to the cpp/ folder
1 parent 26956f8 commit f6321a3

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/fuzzing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/cache@v4
3636
id: cache-deps
3737
with:
38-
path: ./build/fuzz/third_party/install
38+
path: ./cpp/build/fuzz/third_party/install
3939
key: fuzz-deps-${{ hashFiles('./third_party/**') }}-1
4040

4141
- name: Disable superbuild on cache hit

.github/workflows/linux.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- uses: actions/cache@v4
8989
id: cache
9090
with:
91-
path: ./build/third_party/install
91+
path: ./cpp/build/third_party/install
9292
key: ${{ github.job }}-${{ hashFiles('./third_party/**') }}-3
9393
- name: disable superbuild on cache hit
9494
if: steps.cache.outputs.cache-hit == 'true'
@@ -136,7 +136,7 @@ jobs:
136136
uses: coverallsapp/github-action@v2
137137
with:
138138
github-token: ${{ secrets.GITHUB_TOKEN }}
139-
path-to-lcov: "./lcov.info"
139+
path-to-lcov: "./cpp/lcov.info"
140140

141141
ubuntu-debug:
142142
name: Ubuntu 24.04 (Debug Build)
@@ -159,7 +159,7 @@ jobs:
159159
- uses: actions/cache@v4
160160
id: cache
161161
with:
162-
path: ./build/debug/third_party/install
162+
path: ./cpp/build/debug/third_party/install
163163
key: ${{ github.job }}-${{ hashFiles('./third_party/**') }}-3
164164
- name: disable superbuild on cache hit
165165
if: steps.cache.outputs.cache-hit == 'true'
@@ -196,7 +196,7 @@ jobs:
196196
- uses: actions/cache@v4
197197
id: cache
198198
with:
199-
path: ./build/asan/third_party/install
199+
path: ./cpp/build/asan/third_party/install
200200
key: ${{ github.job }}-${{ hashFiles('./third_party/**') }}-3
201201
- name: disable superbuild on cache hit
202202
if: steps.cache.outputs.cache-hit == 'true'
@@ -236,7 +236,7 @@ jobs:
236236
- uses: actions/cache@v4
237237
id: cache
238238
with:
239-
path: ./build/tsan/third_party/install
239+
path: ./cpp/build/tsan/third_party/install
240240
key: ${{ github.job }}-${{ hashFiles('./third_party/**') }}-3
241241
- name: disable superbuild on cache hit
242242
if: steps.cache.outputs.cache-hit == 'true'
@@ -276,7 +276,7 @@ jobs:
276276
- uses: actions/cache@v4
277277
id: cache
278278
with:
279-
path: ./build/ubsan/third_party/install
279+
path: ./cpp/build/ubsan/third_party/install
280280
key: ${{ github.job }}-${{ hashFiles('./third_party/**') }}-3
281281
- name: disable superbuild on cache hit
282282
if: steps.cache.outputs.cache-hit == 'true'
@@ -345,7 +345,7 @@ jobs:
345345
- uses: actions/cache@v4
346346
id: cache
347347
with:
348-
path: ./build/release/third_party/install
348+
path: ./cpp/build/release/third_party/install
349349
key: ${{ github.job }}-${{ matrix.ubuntu_version }}-${{ matrix.cc }}-${{ hashFiles('./third_party/**') }}-2
350350
- name: disable superbuild on cache hit
351351
if: steps.cache.outputs.cache-hit == 'true'
@@ -407,7 +407,7 @@ jobs:
407407
- uses: actions/cache@v4
408408
id: cache
409409
with:
410-
path: ./build/release/third_party/install
410+
path: ./cpp/build/release/third_party/install
411411
key: ${{ github.job }}-${{ hashFiles('./third_party/**') }}-3
412412
- name: disable superbuild on cache hit
413413
if: steps.cache.outputs.cache-hit == 'true'
@@ -460,7 +460,7 @@ jobs:
460460
- uses: actions/cache@v4
461461
id: cache
462462
with:
463-
path: ./build/default/third_party/install
463+
path: ./cpp/build/default/third_party/install
464464
key: ${{ github.job }}-${{ hashFiles('./third_party/**') }}-3
465465
- name: disable superbuild on cache hit
466466
if: steps.cache.outputs.cache-hit == 'true'
@@ -628,7 +628,7 @@ jobs:
628628
- uses: actions/cache@v4
629629
id: cache
630630
with:
631-
path: ./build/linux-${{ matrix.docker_name }}/third_party/install
631+
path: ./cpp/build/linux-${{ matrix.docker_name }}/third_party/install
632632
key: ${{ github.job }}-linux-${{ matrix.docker_name }}-${{ hashFiles('./third_party/**') }}-2
633633
- name: disable superbuild on cache hit
634634
if: steps.cache.outputs.cache-hit == 'true'
@@ -679,7 +679,7 @@ jobs:
679679
- uses: actions/cache@v4
680680
id: cache
681681
with:
682-
path: ./build/release/third_party/install
682+
path: ./cpp/build/release/third_party/install
683683
key: ${{ github.job }}-${{ hashFiles('./third_party/**') }}-3
684684
- name: disable superbuild on cache hit
685685
if: steps.cache.outputs.cache-hit == 'true'
@@ -729,7 +729,7 @@ jobs:
729729
- uses: actions/cache@v4
730730
id: cache
731731
with:
732-
path: ./build/${{ matrix.arch_name }}/third_party/install
732+
path: ./cpp/build/${{ matrix.arch_name }}/third_party/install
733733
key: ${{ github.job }}-${{ matrix.arch_name }}-${{ hashFiles('./third_party/**') }}-2
734734
- name: disable superbuild on cache hit
735735
if: steps.cache.outputs.cache-hit == 'true'
@@ -784,7 +784,7 @@ jobs:
784784
- uses: actions/cache@v4
785785
id: cache
786786
with:
787-
path: ./build/${{ matrix.name }}/third_party/install
787+
path: ./cpp/build/${{ matrix.name }}/third_party/install
788788
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./third_party/**') }}-2
789789
- name: disable superbuild on cache hit
790790
if: steps.cache.outputs.cache-hit == 'true'

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- uses: actions/cache@v4
5656
id: cache
5757
with:
58-
path: ./build/macos/third_party/install
58+
path: ./cpp/build/macos/third_party/install
5959
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./third_party/**') }}-2
6060
- name: disable superbuild on cache hit
6161
if: steps.cache.outputs.cache-hit == 'true'
@@ -130,7 +130,7 @@ jobs:
130130
- uses: actions/cache@v4
131131
id: cache
132132
with:
133-
path: ./build/${{ matrix.name }}/third_party/install
133+
path: ./cpp/build/${{ matrix.name }}/third_party/install
134134
key: ${{ github.job }}-${{ matrix.name }}-${{ hashFiles('./third_party/**', './cmake/ios.toolchain.cmake') }}-2
135135
- name: disable superbuild on cache hit
136136
if: steps.cache.outputs.cache-hit == 'true'

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/cache@v4
4848
id: cache
4949
with:
50-
path: ./build/third_party/install
50+
path: ./cpp/build/third_party/install
5151
key: ${{ github.job }}-${{ matrix.arch }}-${{ hashFiles('./third_party/**') }}-2
5252
- name: disable superbuild on cache hit
5353
if: steps.cache.outputs.cache-hit == 'true'
@@ -132,7 +132,7 @@ jobs:
132132
- uses: actions/cache@v4
133133
id: cache
134134
with:
135-
path: ./build/third_party/install
135+
path: ./cpp/build/third_party/install
136136
key: ${{ github.job }}-${{ matrix.arch }}-${{ matrix.config }}-${{ hashFiles('./third_party/**') }}-2
137137
- name: disable superbuild on cache hit
138138
if: steps.cache.outputs.cache-hit == 'true'

0 commit comments

Comments
 (0)