Skip to content

Commit

Permalink
Picoware CI build workflow pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Jun 23, 2024
1 parent a77f340 commit 2043723
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/picoware_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Picoware CI

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./picoware

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Arduino CLI
uses: arduino/setup-arduino-cli@v1

- name: Arduino CLI Core Index Update
run: |
arduino-cli config init
arduino-cli core update-index
- name: Arduino RP2040 Platform Installation
run: arduino-cli core install rp2040:rp2040 --additional-urls https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json

- name: Picoware for RP2040
run: |
arduino-cli compile --fqbn rp2040:rp2040:rpipico:opt=Optimize3 picoware.ino

0 comments on commit 2043723

Please sign in to comment.