mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
- Added new board - Extracted ST7789 driver and backlight PWM driver into separate subprojects - Refactored T-Deck to use the shared driver modules - Fix bug in WiFi service: searching for APs was broken
66 lines
1.5 KiB
YAML
66 lines
1.5 KiB
YAML
name: Build Firmware
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
cyd-2432S024c:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-firmware
|
|
with:
|
|
board_id: cyd-2432S024c
|
|
arch: esp32
|
|
elecrow-crowpanel-advance-28:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-firmware
|
|
with:
|
|
board_id: elecrow-crowpanel-advance-28
|
|
arch: esp32s3
|
|
lilygo-tdeck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-firmware
|
|
with:
|
|
board_id: lilygo-tdeck
|
|
arch: esp32s3
|
|
m5stack-core2:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-firmware
|
|
with:
|
|
board_id: m5stack-core2
|
|
arch: esp32
|
|
m5stack-cores3:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-firmware
|
|
with:
|
|
board_id: m5stack-cores3
|
|
arch: esp32s3
|
|
unphone:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-firmware
|
|
with:
|
|
board_id: unphone
|
|
arch: esp32s3
|