Remove branch name #15
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
name: bazel-presubmit | |
on: | |
push: | |
pull_request: | |
jobs: | |
bazel-build-check: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get Bazel | |
uses: bazel-contrib/setup-bazel@0.9.0 | |
with: | |
# 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 | |
# Only needed to drive the presbumit scripts. | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Full bazel build | |
run: python3 tools/bazel_build.py | |
- name: Fetch latest Picotool | |
uses: actions/checkout@v4 | |
with: | |
repository: raspberrypi/picotool | |
ref: develop | |
fetch-depth: 0 | |
path: lib/picotool | |
- name: Bazel Picotool backwards compatibility | |
run: bazel build @picotool//:picotool |