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
|
- name: Mount bazel cache
|
||||||
uses: actions/cache@v2.1.1
|
uses: actions/cache@v2.1.1
|
||||||
with:
|
with:
|
||||||
path: '/home/runner/.cache/bazel'
|
path: |
|
||||||
|
/home/runner/.cache/bazel
|
||||||
|
/home/runner/.cache/bazel-disk-cache
|
||||||
key: bazel
|
key: bazel
|
||||||
|
|
||||||
- name: Install bazelisk
|
- 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
|
- name: Mount bazel cache
|
||||||
uses: actions/cache@v2.1.1
|
uses: actions/cache@v2.1.1
|
||||||
with:
|
with:
|
||||||
path: '/home/runner/.cache/bazel'
|
path: |
|
||||||
key: bazel_dev_container
|
/home/runner/.cache/bazel
|
||||||
|
/home/runner/.cache/bazel-disk-cache
|
||||||
|
key: bazel
|
||||||
|
|
||||||
- name: Install bazelisk
|
- name: Install bazelisk
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Reference in a new issue