Skip to content

CI

CI #324

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
schedule:
- cron: '59 23 * * *' # every day at 23:59 UTC
jobs:
micro_ros_platformio:
runs-on: ubuntu-24.04
container: ubuntu:24.04
strategy:
fail-fast: false
matrix:
platform: [teensy41, teensy40, teensy36, teensy35, teensy31, due, zero, olimex_e407, esp32dev, nanorp2040connect, portenta_h7_m7, teensy41_eth, nanorp2040connect_wifi, portenta_h7_m7_wifi, esp32dev_wifi, esp32dev_ethernet, portenta_h7_m7_humble, portenta_h7_m7_jazzy, portenta_h7_m7_kilted, portenta_h7_m7_rolling, teensy41_custom, pico, pico2]
steps:
- uses: actions/checkout@v5
with:
path: repo
- name: Install environment
uses: ./repo/.github/actions/platformio-env
- name: Build
shell: bash
run: |
export PATH=$PATH:~/.platformio/penv/bin
cd repo/ci
pio run -e ${{ matrix.platform }}