Faster pancakes: cache bazel steps between builds (#26937)

* cache bazel steps

* test break

* Automated change: Fix sanity tests

Co-authored-by: ctiller <ctiller@users.noreply.github.com>
pull/26851/head^2
Craig Tiller 3 years ago committed by GitHub
parent 4449462ef1
commit 3e122fd050
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/pr-auto-fix.yaml

@ -4,6 +4,14 @@ jobs:
PRAutoFix:
runs-on: ubuntu-latest
steps:
# Cache bazel build
- name: Cache bazel
uses: actions/cache@v2
env:
cache-name: bazel-cache
with:
path: ~/.cache/bazel
key: ${{ runner.os }}-${{ env.cache-name }}
# Cancel current runs if they're still running
# (saves processing on fast pushes)
- name: Cancel Previous Runs

Loading…
Cancel
Save