Skip to content

Commit

Permalink
Add PicoSystem to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Daft-Freak committed Oct 22, 2021
1 parent 1853a58 commit 721b104
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ jobs:
cmake-args: -DCMAKE_TOOLCHAIN_FILE=$GITHUB_WORKSPACE/32blit-sdk/32blit.toolchain
apt-packages: gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib python3-setuptools

- os: ubuntu-20.04
pico-sdk: true
name: PicoSystem
cache-key: picosystem
release-suffix: PicoSystem
cmake-args: -DCMAKE_TOOLCHAIN_FILE=$GITHUB_WORKSPACE/32blit-sdk/pico.toolchain -DPICO_BOARD=pimoroni_picosystem
apt-packages: gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib python3-setuptools

- os: macos-latest
name: macOS
release-suffix: MACOS
Expand Down Expand Up @@ -65,6 +73,22 @@ jobs:
repository: 32blit/32blit-sdk
path: 32blit-sdk

# pico sdk/extras for some builds
- name: Checkout Pico SDK
if: matrix.pico-sdk
uses: actions/checkout@v2
with:
repository: raspberrypi/pico-sdk
path: pico-sdk
submodules: true

- name: Checkout Pico Extras
if: matrix.pico-sdk
uses: actions/checkout@v2
with:
repository: raspberrypi/pico-extras
path: pico-extras

# Linux dependencies
- name: Install Linux deps
if: runner.os == 'Linux'
Expand Down

0 comments on commit 721b104

Please sign in to comment.