Skip to content

Commit 3c721a4

Browse files
committed
debugging ci workflow
1 parent 57cc7cf commit 3c721a4

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,14 @@ jobs:
2424
uses: actions/checkout@v4
2525

2626
- name: Set up Bazel
27-
uses: bazelbuild/setup-bazel@v3
27+
uses: bazel-contrib/setup-bazel@0.14.0
2828
with:
29-
bazel-version: 'latest'
29+
# Avoid downloading Bazel every time.
30+
bazelisk-cache: true
31+
# Store build cache per workflow.
32+
disk-cache: ${{ github.workflow }}
33+
# Share repository cache between workflows.
34+
repository-cache: true
3035

3136
- name: Bazel tests
3237
run: bazel test src:all

0 commit comments

Comments
 (0)