From 5ae83165053337ba5d88ebf3968315dcfef0f9f5 Mon Sep 17 00:00:00 2001 From: xysun Date: Thu, 5 Sep 2024 14:35:59 +0800 Subject: [PATCH 1/2] ci: remove esp-idf v4.4 and add esp-idf v5.3 --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 994f46f..3ff3bbb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -110,9 +110,9 @@ before_script: - "components/esp-sr/model/wakenet_model/**/*" - "test/wakenet/**/*" -build_idf_v4.4: +build_idf_v5.3: extends: .build_examples_template - image: espressif/idf:release-v4.4 + image: espressif/idf:release-v5.3 build_idf_v5.0: extends: .build_examples_template From 7b59d2458ec19a0c4d7e9441fe806d62745255b0 Mon Sep 17 00:00:00 2001 From: xysun Date: Thu, 5 Sep 2024 14:36:26 +0800 Subject: [PATCH 2/2] ci: support esp32p4 --- examples/.build-test-rules.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/.build-test-rules.yml b/examples/.build-test-rules.yml index 8ef7f01..b6315ee 100644 --- a/examples/.build-test-rules.yml +++ b/examples/.build-test-rules.yml @@ -2,19 +2,19 @@ examples/chinese_tts: enable: - - if: IDF_TARGET in ["esp32", "esp32s3"] + - if: IDF_TARGET in ["esp32", "esp32s3", "esp32p4"] temporary: false reason: the other targets are not tested yet examples/cn_speech_commands_recognition: enable: - - if: IDF_TARGET in ["esp32", "esp32s3"] + - if: IDF_TARGET in ["esp32", "esp32s3", "esp32p4"] temporary: false reason: the other targets are not tested yet examples/en_speech_commands_recognition: enable: - - if: IDF_TARGET == "esp32s3" + - if: IDF_TARGET in ["esp32s3", "esp32p4"] temporary: false reason: the other targets are not tested yet @@ -26,12 +26,12 @@ examples/usb_mic_recorder: examples/voice_communication: enable: - - if: IDF_TARGET == "esp32s3" + - if: IDF_TARGET in ["esp32s3", "esp32p4"] temporary: false reason: the other targets are not tested yet examples/wake_word_detection: enable: - - if: IDF_TARGET in ["esp32", "esp32s3"] + - if: IDF_TARGET in ["esp32", "esp32s3", "esp32p4"] temporary: false reason: the other targets are not tested yet \ No newline at end of file