Tactiliest/.github/workflows/build-firmware.yml
Ken Van Hoeylandt 42e843b463
C++ conversions (#111)
* Remove version from artifact name
* Target C++ 20 and higher
* Use cpp string
* Better crash implementation
* String utils in cpp style
* Replace parameter methods with start() method
* MutexType to Mutex::Type
* Kernel c to cpp style
* Cleanup event flag
* More cpp conversions
* Test fixes
* Updated ideas docs
2024-12-07 12:24:28 +01:00

47 lines
1.2 KiB
YAML

name: Build Firmware
on: [push]
permissions: read-all
jobs:
yellow-board:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-firmware
with:
board-name: yellowboard
sdkconfig: sdkconfig.board.yellow_board
arch: esp32
lilygo-tdeck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-firmware
with:
board-name: lilygotdeck
sdkconfig: sdkconfig.board.lilygo_tdeck
arch: esp32s3
m5stack-core2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-firmware
with:
board-name: m5stackcore2
sdkconfig: sdkconfig.board.m5stack_core2
arch: esp32
m5stack-cores3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-firmware
with:
board-name: m5stackcores3
sdkconfig: sdkconfig.board.m5stack_cores3
arch: esp32s3