Skip to content

Commit

Permalink
Use ubuntu-latest again for CI
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 707691186
  • Loading branch information
l46kok authored and copybara-github committed Dec 18, 2024
1 parent 47f3ddd commit cad71be
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/setup-bazel@0.9.1
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
Expand Down

0 comments on commit cad71be

Please sign in to comment.