- Simplified board ids/naming in all build scripting - Implemented archiving of build artifacts for all devices in pipelines (including symbols releases for debugging) - Implemented building and archiving of SDK for esp32 and esp32s3 in pipelines - Flattened SDK release folder structure - Renamed "Tactility-(ARCH)-SDK" to "TactilitySDK-(ARCH)" (aligns with "default" folder name, that's without the (ARCH))
25 lines
489 B
YAML
25 lines
489 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: yellow-board
|
|
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
|