Skip to content

Commit

Permalink
Disable cache in Bazel build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Dec 11, 2024
1 parent f1ca8b7 commit 42297f8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/...
Expand Down

0 comments on commit 42297f8

Please sign in to comment.