From 7888c329c164618766ff2a502ea1ae05e91592e7 Mon Sep 17 00:00:00 2001 From: Chris Morrow Date: Sun, 5 Jan 2025 19:43:40 -0500 Subject: [PATCH] Remove the bazel cache, clearing it MAY resolve build errors. --- .github/workflows/bazel.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index 459bc8c..71c49de 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -16,16 +16,16 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive - - name: Mount bazel cache - uses: actions/cache@v4 - with: - # See https://docs.bazel.build/versions/master/output_directories.html - path: "~/.cache/bazel" - # Create a new cache entry whenever Bazel files change. - # See https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows - key: bazel-${{ runner.os }}-build-${{ hashFiles('**/*.bzl', '**/*.bazel') }} - restore-keys: | - bazel-${{ runner.os }}-build- +# - name: Mount bazel cache +# uses: actions/cache@v4 +# with: +# # See https://docs.bazel.build/versions/master/output_directories.html +# path: "~/.cache/bazel" +# # Create a new cache entry whenever Bazel files change. +# # See https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows +# key: bazel-${{ runner.os }}-build-${{ hashFiles('**/*.bzl', '**/*.bazel') }} +# restore-keys: | +# bazel-${{ runner.os }}-build- - name: Install bazelisk run: | curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/$BAZEL"