Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/_build-android-aar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
echo "ANDROID_NDK_ROOT=${ANDROID_SDK_ROOT}/ndk/29.0.14206865" >> "$GITHUB_ENV"
- name: Cache Gradle
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.gradle/caches
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_build-android-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
echo "ANDROID_NDK_ROOT=${ANDROID_SDK_ROOT}/ndk/29.0.14206865" >> "$GITHUB_ENV"
- name: Cache Gradle
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.gradle/caches
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_build-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# ~99% hit, so the cache is worth keeping there.
- name: Restore Bazel disk cache
if: runner.os == 'Linux'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/bazel-disk
key: bazel-cli-${{ runner.os }}-${{ hashFiles('MODULE.bazel.lock', 'cli/**/BUILD.bazel', 'cli/**/*.bzl') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
path: sdk/pkg-geniex/

- name: Restore Bazel disk cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/bazel-disk
key: bazel-cli-${{ runner.os }}-${{ hashFiles('MODULE.bazel.lock', 'cli/**/BUILD.bazel', 'cli/**/*.bzl') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_build-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
version_tag: ${{ inputs.version_tag }}

- name: Restore ccache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ github.workspace }}/.ccache
key: ccache-sdk-${{ matrix.platform }}-${{ github.sha }}
Expand All @@ -96,7 +96,7 @@ jobs:
# No restore-keys — a source change forces a clean rebuild instead of a
# fuzzy restore that would re-trigger the staleness.
- name: Restore cargo target
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
sdk/model-manager/target
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
# configure-time inputs; a change there mints a new entry, while
# restore-keys lets unchanged-config runs reuse the previous tree.
- name: Restore CMake build dir
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: sdk/build-${{ matrix.preset }}
key: cmake-build-${{ matrix.platform }}-${{ steps.tc.outputs.tag }}-${{ hashFiles('sdk/CMakeLists.txt', 'sdk/**/CMakeLists.txt', 'sdk/CMakePresets.json', 'sdk/cmake/**', 'sdk/patches/**', '.gitmodules', 'third-party/**/CMakeLists.txt', 'third-party/**/*.cmake', 'third-party/**/cmake/**') }}-${{ github.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
# on Linux. Negative patterns must follow `--`.
- name: Restore Bazel disk cache (Linux go-test)
if: steps.skip.outputs.skip != 'true' && inputs.language == 'go' && matrix.platform == 'linux-arm64'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/bazel-disk
key: bazel-go-test-${{ runner.os }}-${{ hashFiles('MODULE.bazel.lock', 'cli/**/BUILD.bazel', 'bindings/go/**/BUILD.bazel', 'cli/**/*.bzl') }}
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

- name: Cache HF GGUF blobs
if: steps.skip.outputs.skip != 'true' && inputs.language != 'go'
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/geniex
key: geniex-models-llama_cpp-${{ matrix.platform }}-v1-${{ hashFiles('tests/_models.py', 'bindings/python/tests/conftest.py') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-llama-cpp-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
ccache --max-size=5G
- name: Restore ccache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ github.workspace }}/.ccache
key: ccache-llama-windows-arm64-${{ steps.llama.outputs.sha }}
Expand Down
Loading