Raspberry Pi 4B & 5 baremetal blink example #9
Workflow file for this run
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: Build Raspberry Pi Baremetal Examples | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
schedule: | |
# Build on Mondays at 9am PST every week | |
- cron: '0 17 * * 1' | |
jobs: | |
build-pico-sdk: | |
runs-on: ubuntu-22.04 | |
container: swiftlang/swift:nightly-main-jammy | |
strategy: | |
fail-fast: false | |
matrix: | |
example: [rpi5-blink, rpi4b-blink] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install apt dependencies | |
run: apt-get -qq update && apt-get -qq -y install llvm | |
- name: Build ${{ matrix.example.name }} | |
run: | | |
cd ${{ matrix.example.name }} | |
make |