mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
- Remove custom `ESP_TARGET` and use `ESP_PLATFORM` everywhere - Add `Loader` service functionality to `tt::app::` namespace - Make `Loader` `PubSub` usable by exposing the messages - Add board type to crash log - Don't show SD card in Files app when it's not mounted - Set default SPI frequency for SD cards - Move TT_VERSION to scope that works for sim too - Log Tactility version and board on boot - Rename "Yellow Board" to "CYD 2432S024C"
25 lines
490 B
YAML
25 lines
490 B
YAML
name: Build SDK
|
|
on: [push]
|
|
|
|
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
|