From 7b836078968ec9376df1242911b0d97fe41b9f98 Mon Sep 17 00:00:00 2001 From: Piotr Korkus Date: Fri, 20 Feb 2026 08:14:20 +0100 Subject: [PATCH] disable caching for unit tests --- .github/workflows/test_and_docs.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_and_docs.yml b/.github/workflows/test_and_docs.yml index fde8aceb6ee..07fcc9abd0b 100644 --- a/.github/workflows/test_and_docs.yml +++ b/.github/workflows/test_and_docs.yml @@ -43,11 +43,12 @@ jobs: - name: Setup Bazel uses: bazel-contrib/setup-bazel@0.18.0 - with: - bazelisk-cache: true - disk-cache: ${{ github.workflow }} - repository-cache: true - cache-save: ${{ github.event_name == 'push' }} + # Currently disabled due to issue in testing not finding correct libraries + # with: + # bazelisk-cache: true + # disk-cache: ${{ github.workflow }} + # repository-cache: true + # cache-save: ${{ github.event_name == 'push' }} - name: Set up Python 3 uses: actions/setup-python@v5