Skip to content

Commit

Permalink
github actions to compile more examples in v5.3.
Browse files Browse the repository at this point in the history
and remove not used targets from 5.3, since they still depened on v4.4
  • Loading branch information
ricardoquesada committed Dec 20, 2024
1 parent 5fcacce commit f125048
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/esp-idf-latest.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build with ESP-IDF v5.2
name: Build with ESP-IDF v5.3

on:
push:
Expand Down Expand Up @@ -28,40 +28,40 @@ jobs:
- name: Unijoysticle build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.2
esp_idf_version: release-v5.3
target: esp32
path: 'src'
command: 'idf.py -B build_plat_unijoysticle -D SDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.plat_unijoysticle" build'

- name: AirLift build
- name: Example ESP32 build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.2
esp_idf_version: release-v5.3
target: esp32
path: 'src'
command: 'idf.py -B build_plat_airlift -D SDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.plat_airlift" build'
path: 'examples/esp32'
command: 'idf.py build'

- name: NINA build
- name: Example ESP32-S3 build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.2
target: esp32
path: 'src'
command: 'idf.py -B build_plat_nina -D SDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.plat_nina" build'
esp_idf_version: release-v5.3
target: esp32-s3
path: 'examples/esp32'
command: 'idf.py build'

- name: MightyMiggy build
- name: Example ESP32-C3 build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.2
target: esp32
path: 'src'
command: 'idf.py -B build_plat_mightymiggy -D SDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.plat_mightymiggy" build'
esp_idf_version: release-v5.3
target: esp32-c3
path: 'examples/esp32'
command: 'idf.py build'

- name: Example build
- name: Example ESP32-C6 build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.2
target: esp32
esp_idf_version: release-v5.3
target: esp32-c6
path: 'examples/esp32'
command: 'idf.py build'

4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ build-ubuntu-linux-clang:
script:
- cd examples/posix && mkdir build && cd build && cmake .. && CC=clang make -j

build-esp-idf-5.1:
image: espressif/idf:release-v5.1
build-esp-idf-5.3:
image: espressif/idf:release-v5.3
variables:
GIT_SUBMODULE_STRATEGY: normal
stage: build
Expand Down

0 comments on commit f125048

Please sign in to comment.