-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): migrate bazelbuild/setup-bazelisk to bazel-contrib/setup-b…
…azel KAG-5221
- Loading branch information
1 parent
3455151
commit e8adf5d
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -189,7 +189,20 @@ jobs: | |
grep -v '^#' .requirements >> $GITHUB_ENV | ||
- name: Setup Bazel | ||
uses: bazelbuild/setup-bazelisk@95c9bf48d0c570bb3e28e57108f3450cd67c1a44 # v2.0.0 | ||
uses: bazel-contrib/[email protected] | ||
with: | ||
bazelisk-version: "1.20.0" | ||
# Avoid downloading Bazel every time. | ||
bazelisk-cache: true | ||
# Store build cache per workflow. | ||
disk-cache: ${{ github.workflow }} | ||
# Share repository cache between workflows. | ||
repository-cache: true | ||
|
||
- name: locate bazel | ||
run: | | ||
find / -name "bazel" 2>/dev/null | ||
echo "" | ||
- name: Install Deb Dependencies | ||
if: matrix.package == 'deb' && steps.cache-deps.outputs.cache-hit != 'true' | ||
|