Skip to content

Commit

Permalink
add esp32 for build examples workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hasenradball committed Nov 10, 2024
1 parent f32c673 commit 59f60a4
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion .github/workflows/compile_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,33 @@ jobs:
libraries: |
- source-path: ./
sketch-paths:
./examples/ESP8266_example/ESP8266_example.ino
./examples/ESP8266_example/ESP8266_example.ino

build-esp32:
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, 'esp32')

strategy:
fail-fast: false

matrix:
idf_ver: ["release-v5.0", "release-v5.1", "release-v5.2", "release-v5.3", "latest"]
idf_target: ["esp32", "esp32s2", "esp32s3", "esp32c2", "esp32c3"]

container: espressif/idf:${{ matrix.idf_ver }}

steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: esp-idf build
env:
IDF_TARGET: ${{ matrix.idf_target }}
shell: bash
working-directory: examples/ESP8266_example
run: |
. ${IDF_PATH}/export.sh
export PEDANTIC_FLAGS="-DIDF_CI_BUILD -Werror -Werror=deprecated-declarations -Werror=unused-variable -Werror=unused-but-set-variable -Werror=unused-function"
export EXTRA_CFLAGS="${PEDANTIC_FLAGS} -Wstrict-prototypes"
export EXTRA_CXXFLAGS="${PEDANTIC_FLAGS}"
idf.py build

0 comments on commit 59f60a4

Please sign in to comment.