ci: Add support for esp32c3
This commit is contained in:
parent
efdfec0362
commit
dabb85c6b0
|
@ -17,7 +17,7 @@ jobs:
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
target-hardware: [esp8266, esp32]
|
target-hardware: [esp8266, esp32, esp32c3]
|
||||||
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -57,12 +57,12 @@ jobs:
|
||||||
# echo "::set-output name=status::success"
|
# echo "::set-output name=status::success"
|
||||||
|
|
||||||
|
|
||||||
- name: Build for esp32
|
- name: Build for esp32/esp32c3
|
||||||
if: matrix.target-hardware == 'esp32'
|
if: matrix.target-hardware != 'esp8266'
|
||||||
uses: espressif/esp-idf-ci-action@v1
|
uses: espressif/esp-idf-ci-action@v1
|
||||||
with:
|
with:
|
||||||
esp_idf_version: v4.2
|
esp_idf_version: v4.4.2
|
||||||
target: esp32
|
target: ${{ matrix.target-hardware }}
|
||||||
path: './'
|
path: './'
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue