mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* initial changes for waveshare s3 touch support * fix lvgl locking * fix for lvgl locking * cleaned up dependencies * boards now depend on tactility instead of tactility-esp * revert deletion * remove component * working touch&display driver * added waveshare to github actions * cleanup * fix for driver * fix for sim build * build fixes * updated docs * updated docs * attempt new sdl2 github action * revert * fixes for clion/cmdline build environment wasn't parsed properly * temporarily disable pc sim build
49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
name: Build
|
|
on: [push]
|
|
jobs:
|
|
Build-Yellow-Board:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- name: Board select
|
|
run: cp sdkconfig.board.yellow_board sdkconfig
|
|
- name: esp32 build
|
|
uses: espressif/esp-idf-ci-action@main
|
|
with:
|
|
esp_idf_version: v5.1.2
|
|
target: esp32
|
|
path: './'
|
|
build-lilygo-t-deck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- name: board select
|
|
run: cp sdkconfig.board.lilygo_tdeck sdkconfig
|
|
- name: esp32s3 build
|
|
uses: espressif/esp-idf-ci-action@main
|
|
with:
|
|
esp_idf_version: v5.1.2
|
|
target: esp32s3
|
|
path: './'
|
|
build-waveshare-s3-touch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- name: board select
|
|
run: cp sdkconfig.board.waveshare_s3_touch sdkconfig
|
|
- name: esp32s3 build
|
|
uses: espressif/esp-idf-ci-action@main
|
|
with:
|
|
esp_idf_version: v5.1.2
|
|
target: esp32s3
|
|
path: './'
|