From 42297f85956f89e99992e85ff7c2baeef67cf6e8 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Wed, 11 Dec 2024 11:22:07 +0100 Subject: [PATCH] Disable cache in Bazel build workflow --- .github/workflows/build.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa97f8dd33..829194d5cd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -110,15 +110,15 @@ jobs: runs-on: ubuntu-20.04 steps: # Caches and restores the bazelisk download directory. - - name: Cache bazelisk download - uses: actions/cache@v4 - env: - cache-name: bazel-cache - with: - path: ~/.cache/bazelisk - key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.ref }} - restore-keys: | - ${{ runner.os }}-${{ env.cache-name }} + # - name: Cache bazelisk download + # uses: actions/cache@v4 + # env: + # cache-name: bazel-cache + # with: + # path: ~/.cache/bazelisk + # key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.ref }} + # restore-keys: | + # ${{ runner.os }}-${{ env.cache-name }} - uses: actions/checkout@v2 - name: Build run: bazel build @jansson//... //tests/...