mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
27 lines
537 B
YAML
27 lines
537 B
YAML
name: Build SDK
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [ opened, synchronize, reopened ]
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
board: [
|
|
{ id: cyd-2432s028r, arch: esp32 },
|
|
{ id: lilygo-tdeck, arch: esp32s3 },
|
|
]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-sdk
|
|
with:
|
|
board_id: ${{ matrix.board.id }}
|
|
arch: ${{ matrix.board.arch }}
|