mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
- Fix case for board configs - CMake now only builds a single board instead of all boards for the selected SOC. This makes it quicker to compile a single firmware.
30 lines
577 B
YAML
30 lines
577 B
YAML
name: Build SDK
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
esp32:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-sdk
|
|
with:
|
|
board_id: cyd-2432s024c
|
|
arch: esp32
|
|
esp32s3:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-sdk
|
|
with:
|
|
board_id: lilygo-tdeck
|
|
arch: esp32s3
|