Skip to content

Commit

Permalink
Add check against latest picotool
Browse files Browse the repository at this point in the history
  • Loading branch information
armandomontanez committed Oct 4, 2024
1 parent 87dfb58 commit 57e3241
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/bazel_build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: basic
run-name: presubmit run triggered by ${{ github.actor }}
name: bazel-presubmit

on:
push:
branches:
Expand Down Expand Up @@ -27,8 +27,17 @@ jobs:
repository-cache: true
# Only needed to drive the presbumit scripts.
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Presubmit
run: python3 tools/run_all_bazel_checks.py
- 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 build latest picotool
run: bazel build @picotool//:picotool --override_module=picotool=lib/picotool

0 comments on commit 57e3241

Please sign in to comment.