From 1d034f268d2257b2f457e59603360921490b48c1 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Tue, 14 Oct 2025 16:56:48 +0300 Subject: [PATCH] Add ESP32-S3 build to Actions --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8663645..f4ef650 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,9 @@ jobs: with: name: firmware-binary path: flix/build - - name: Build firmware without Wi-Fi + - name: Build firmware for ESP32-S3 + run: make BOARD=esp32:esp32:esp32s3 + - name: Build firmware with WiFi disabled run: sed -i 's/^#define WIFI_ENABLED 1$/#define WIFI_ENABLED 0/' flix/flix.ino && make - name: Check c_cpp_properties.json run: tools/check_c_cpp_properties.py