-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
10 additions
and
6 deletions.
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 |
---|---|---|
|
@@ -16,19 +16,23 @@ concurrency: | |
|
||
jobs: | ||
Bazel-Tests: | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." | ||
- run: echo "🐧 Job is running on a ${{ runner.os }} server!" | ||
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- name: Mount Bazel Cache | ||
uses: actions/cache@v3 | ||
uses: actions/checkout@v4 | ||
- name: Setup Bazel | ||
uses: bazel-contrib/[email protected] | ||
with: | ||
path: "/home/runner/.cache/bazel" | ||
key: bazelisk | ||
# 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: Bazel Output Version | ||
run: bazelisk --version | ||
- name: Bazel Test | ||
|