0
0
Fork 0

ci: Add support for esp32c3

This commit is contained in:
windowsair 2022-09-17 14:15:23 +08:00
parent efdfec0362
commit dabb85c6b0
1 changed files with 5 additions and 5 deletions

View File

@ -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: './'