From 9822f898e1f1b05fe271419d909d201a1b8ce139 Mon Sep 17 00:00:00 2001 From: Asklv Date: Thu, 19 Feb 2026 22:10:00 +0000 Subject: [PATCH] ci: add ubuntu esp-idf build verification workflow Signed-off-by: Asklv --- .github/workflows/build.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..3f55b2f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,25 @@ +name: Build + +on: + push: + branches: + - '**' + pull_request: + +jobs: + idf-build: + runs-on: ubuntu-latest + container: + image: espressif/idf:v5.5.2 + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build firmware (ESP32-S3) + shell: bash + run: | + . "$IDF_PATH/export.sh" + idf.py set-target esp32s3 + idf.py fullclean + idf.py build