From fdaeecb263aaa3292e15d6bf8c6c4332e6ff3768 Mon Sep 17 00:00:00 2001 From: "alex@techlias.com" Date: Thu, 15 Jan 2026 08:52:02 -0600 Subject: [PATCH] fix: add continue-on-error to setup-bazelisk in release.yaml to handle cache service failures --- .github/workflows/release.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a9a90b95..bf18484a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -34,6 +34,7 @@ jobs: key: "bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE', '**/*.cpp', '**/*.h', '**/*.rs') }}" restore-keys: bazel-cache- - uses: bazelbuild/setup-bazelisk@v2 + continue-on-error: true - name: Test lib run: | bazelisk test //libs/core/test @@ -71,6 +72,7 @@ jobs: key: "bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE', '**/*.cpp', '**/*.h', '**/*.rs') }}" restore-keys: bazel-cache- - uses: bazelbuild/setup-bazelisk@v2 + continue-on-error: true - name: Build npm package run: | bazelisk build --stamp //libs/wrappers/javascript:js @@ -114,6 +116,7 @@ jobs: "~/.cache/bazel" key: "bazel-cache-${{ matrix.os }}-py${{ matrix.python-version }}" - uses: bazelbuild/setup-bazelisk@v2 + continue-on-error: true - name: Build wheel run: | bazelisk build --stamp //libs/wrappers/python:rtbot_wheel