Skip to content

Commit

Permalink
No fast fail
Browse files Browse the repository at this point in the history
  • Loading branch information
armandomontanez committed Oct 4, 2024
1 parent b5e71c6 commit baf36ca
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 25 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/bazel_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,30 @@ on:
- 'fix-bazel-build-2024-10-03'
jobs:
bazel-build-check:
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Bazel Pico SDK CI setup
uses: ./.github/workflows/scripts/common-bazel-setup.yml
- 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
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/scripts/common-bazel-setup.yml

This file was deleted.

0 comments on commit baf36ca

Please sign in to comment.