mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
ci: add bazel disk caches to workflows
This commit is contained in:
parent
2f8fdf3b82
commit
4a558bb532
2 changed files with 7 additions and 3 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -12,7 +12,9 @@ jobs:
|
|||
- name: Mount bazel cache
|
||||
uses: actions/cache@v2.1.1
|
||||
with:
|
||||
path: '/home/runner/.cache/bazel'
|
||||
path: |
|
||||
/home/runner/.cache/bazel
|
||||
/home/runner/.cache/bazel-disk-cache
|
||||
key: bazel
|
||||
|
||||
- name: Install bazelisk
|
||||
|
|
6
.github/workflows/dev-container.yml
vendored
6
.github/workflows/dev-container.yml
vendored
|
@ -19,8 +19,10 @@ jobs:
|
|||
- name: Mount bazel cache
|
||||
uses: actions/cache@v2.1.1
|
||||
with:
|
||||
path: '/home/runner/.cache/bazel'
|
||||
key: bazel_dev_container
|
||||
path: |
|
||||
/home/runner/.cache/bazel
|
||||
/home/runner/.cache/bazel-disk-cache
|
||||
key: bazel
|
||||
|
||||
- name: Install bazelisk
|
||||
run: |
|
||||
|
|
Loading…
Add table
Reference in a new issue