@@ -82,30 +82,30 @@ jobs:
82
82
- name : Build Sketches
83
83
run : bash ./.github/scripts/on-push.sh 1 1 # equal and non-zero to trigger PIO
84
84
85
- # build-esp-idf-component:
86
- # name: Build with ESP-IDF ${{ matrix.idf_ver }} for ${{ matrix.idf_target }}
87
- # runs-on: ubuntu-20.04
88
- # strategy:
89
- # matrix:
90
- # # The version names here correspond to the versions of espressif/idf Docker image.
91
- # # See https://hub.docker.com/r/espressif/idf/tags and
92
- # # https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/tools/idf-docker-image.html
93
- # # for details.
94
- # idf_ver: ["release-v4.4 "]
95
- # idf_target: ["esp32", "esp32s2", "esp32s3", "esp32c3"]
96
- # container: espressif/idf:${{ matrix.idf_ver }}
97
- # steps:
98
- # - name: Check out arduino-esp32 as a component
99
- # uses: actions/checkout@v3
100
- # with:
101
- # submodules: recursive
102
- # path: components/arduino-esp32
103
- # - name: Build
104
- # env:
105
- # IDF_TARGET: ${{ matrix.idf_target }}
106
- # shell: bash
107
- # run: |
108
- # . ${IDF_PATH}/export.sh
109
- # idf.py create-project test
110
- # echo CONFIG_FREERTOS_HZ=1000 > test/sdkconfig.defaults
111
- # idf.py -C test -DEXTRA_COMPONENT_DIRS=$PWD/components build
85
+ build-esp-idf-component :
86
+ name : Build with ESP-IDF ${{ matrix.idf_ver }} for ${{ matrix.idf_target }}
87
+ runs-on : ubuntu-20.04
88
+ strategy :
89
+ matrix :
90
+ # The version names here correspond to the versions of espressif/idf Docker image.
91
+ # See https://hub.docker.com/r/espressif/idf/tags and
92
+ # https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/tools/idf-docker-image.html
93
+ # for details.
94
+ idf_ver : ["release-v5.1 "]
95
+ idf_target : ["esp32", "esp32s2", "esp32s3", "esp32c3", "esp32c6", "esp32h2 "]
96
+ container : espressif/idf:${{ matrix.idf_ver }}
97
+ steps :
98
+ - name : Check out arduino-esp32 as a component
99
+ uses : actions/checkout@v3
100
+ with :
101
+ submodules : recursive
102
+ path : components/arduino-esp32
103
+ - name : Build
104
+ env :
105
+ IDF_TARGET : ${{ matrix.idf_target }}
106
+ shell : bash
107
+ run : |
108
+ . ${IDF_PATH}/export.sh
109
+ idf.py create-project test
110
+ echo CONFIG_FREERTOS_HZ=1000 > test/sdkconfig.defaults
111
+ idf.py -C test -DEXTRA_COMPONENT_DIRS=$PWD/components build
0 commit comments