Skip to content

Commit 8c5527d

Browse files
committed
Adjust cache path for Scylla ccm images
It seems that the Scylla images for ccm were not cached correctly, because in contrast to cassandra images the path to them is slightly different. The save step outputs a warning about that but it's not failing the step itself.
1 parent 83ea604 commit 8c5527d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/[email protected]

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ jobs:
331331
uses: actions/cache/restore@v4
332332
id: ccm-cache
333333
with:
334-
path: ~/.ccm/repository
334+
path: ~/.ccm/scylla-repository
335335
key: ccm-scylla-${{ runner.os }}-${{ steps.scylla-version.outputs.value }}
336336

337337
- name: Download Scylla (${{ steps.scylla-version.outputs.value }}) image
@@ -346,7 +346,7 @@ jobs:
346346
uses: actions/cache/save@v4
347347
if: steps.ccm-cache.outputs.cache-hit != 'true'
348348
with:
349-
path: ~/.ccm/repository
349+
path: ~/.ccm/scylla-repository
350350
key: ccm-scylla-${{ runner.os }}-${{ steps.scylla-version.outputs.value }}
351351

352352
- name: Run integration tests on Scylla (${{ steps.scylla-version.outputs.value }})

0 commit comments

Comments
 (0)