mirror of
https://code.forgejo.org/actions/cache.git
synced 2024-11-05 19:45:52 +00:00
Fix example for Bazel
This commit is contained in:
parent
4b381be638
commit
ef11f54eee
1 changed files with 10 additions and 6 deletions
16
examples.md
16
examples.md
|
@ -661,14 +661,18 @@ steps:
|
||||||
|
|
||||||
## * - Bazel
|
## * - Bazel
|
||||||
|
|
||||||
Bazel cache has a good handle to check if cached content should be rebuild or not based on its inputs like a hash(command + files). So using the latest cache of the branch is enough, no need to suffix with `hashFiles('**/...')`.
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- name: Cache Bazel
|
- name: Cache Bazel
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.cache/bazelisk
|
~/.cache/bazel # Linux
|
||||||
~/.cache/bazel
|
/private/var/tmp/_bazel_runner/ # macOS
|
||||||
key: ${{ runner.os }}-bazel
|
# TODO Add Windows if you know where it is, based on https://bazel.build/remote/output-directories
|
||||||
|
key: ${{ runner.os }}-bazel-${{ hashFiles('.bazelversion', '.bazelrc', 'WORKSPACE', 'WORKSPACE.bazel', 'MODULE.bazel') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-bazel-
|
||||||
|
- run: bazelisk test //...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
[`bazelisk`](https://github.com/bazelbuild/bazelisk) does not have be to separately downloaded and installed because it's already included in GitHub's `ubuntu-latest` base image.
|
||||||
|
|
Loading…
Reference in a new issue