Skip to content

Commit

Permalink
ci: use a matrix to handle all templates and envs
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Nov 27, 2024
1 parent 7255fbd commit 07e2894
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@ on: [push,pull_request]

jobs:
build:
name: ${{ matrix.template }} ${{ matrix.environment }}
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
template: [ basic, basic-osc, ble-advertising, libmapper-osc ]
environment: [ Xiao, tinypico, m5stick-c, ESP32-S3 ]

steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
Expand All @@ -13,30 +20,21 @@ jobs:
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio

- uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install PlatformIO Core
run: pip install --upgrade platformio

- name: Build ble-advertising
run: cd ./ble-advertising && pio run --environment ESP32-S3
- name: Build
run: cd ./${{ matrix.template }} && pio run --environment ${{ matrix.environment }}

- name: Simulate and test ble-advertising with Wokwi
uses: wokwi/wokwi-ci-action@v1
with:
token: ${{ secrets.WOKWI_CLI_TOKEN }}
path: ./ble-advertising/ # directory with wokwi.toml, relative to repo's root
path: ./${{ matrix.template }}/ # directory with wokwi.toml, relative to repo's root
timeout: 30000
expect_text: 'Puara Start Done!'

- name: Build libmapper-osc
run: cd ./libmapper-osc && pio run --environment ESP32-S3

- name: Simulate and test libmapper-osc with Wokwi
uses: wokwi/wokwi-ci-action@v1
with:
token: ${{ secrets.WOKWI_CLI_TOKEN }}
path: ./libmapper-osc/ # directory with wokwi.toml, relative to repo's root
timeout: 30000
expect_text: 'Puara Start Done!'

0 comments on commit 07e2894

Please sign in to comment.