-
Notifications
You must be signed in to change notification settings - Fork 73
47 lines (42 loc) · 1.26 KB
/
build_idf_examples_matrix.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Build idf examples
# The versions here are defined by platformio:
# https://github.com/platformio/platform-espressif32/releases
# For determining the underlying ESP-IDF-version, check for Supported Frameworks
# under each release on github
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
version:
# - esp32_idf_V4_4_0
- esp32_idf_V5_0_0
- esp32_idf_V5_1_0
- esp32_idf_V5_2_0
- esp32_idf_V5_3_0
# - esp32_idf_V6_7_0 fails due to missing simple encoder
- esp32_idf_V6_8_1
- esp32_idf_V6_9_0
#- esp32c3_idf_V5_3_0
- esp32c3_idf_V6_8_1
- esp32c3_idf_V6_9_0
- esp32c6_idf_V6_8_1
- esp32c6_idf_V6_9_0
#- esp32s2_idf_V5_3_0
- esp32s2_idf_V6_8_1
- esp32s2_idf_V6_9_0
#- esp32s3_idf_V5_3_0
- esp32s3_idf_V6_8_1
- esp32s3_idf_V6_9_0
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Make directories
run: bash extras/scripts/build-pio-dirs.sh
- name: Build on PlatformIO
run: bash extras/scripts/build-idf-platformio.sh ${{ matrix.version }}