From 563641f948aaa13687744e6362a537a992b68bc2 Mon Sep 17 00:00:00 2001 From: Xiao Xufeng Date: Thu, 19 Sep 2024 02:28:20 +0800 Subject: [PATCH] ci(h2): disable build test for h2 --- .gitlab/ci/build.yml | 8 -------- tools/ci/build_template_app.sh | 2 +- tools/ci/test_build_system_cmake.sh | 2 +- 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.gitlab/ci/build.yml b/.gitlab/ci/build.yml index e39ca5f0d7..c078ac0d46 100644 --- a/.gitlab/ci/build.yml +++ b/.gitlab/ci/build.yml @@ -434,14 +434,6 @@ build_examples_cmake_esp32c3: IDF_TARGET: esp32c3 TEST_DIR: examples -build_examples_cmake_esp32h2: - extends: - - .build_cmake_template - - .rules:build:example_test-esp32h2 - variables: - IDF_TARGET: esp32h2 - TEST_DIR: examples - build_test_apps_esp32: extends: - .build_cmake_template diff --git a/tools/ci/build_template_app.sh b/tools/ci/build_template_app.sh index d711604c7e..cc0f628e0d 100755 --- a/tools/ci/build_template_app.sh +++ b/tools/ci/build_template_app.sh @@ -77,7 +77,7 @@ build_stage1() { --build-log ${BUILD_LOG_CMAKE} \ --size-file size.json \ --collect-size-info size_info.txt \ - --default-build-targets esp32 esp32s2 esp32s3 esp32c2 esp32c3 esp32h2 + --default-build-targets esp32 esp32s2 esp32s3 esp32c2 esp32c3 } # Default arguments diff --git a/tools/ci/test_build_system_cmake.sh b/tools/ci/test_build_system_cmake.sh index 16124f6feb..3b37e7f881 100755 --- a/tools/ci/test_build_system_cmake.sh +++ b/tools/ci/test_build_system_cmake.sh @@ -513,7 +513,7 @@ function run_tests() print_status "Test build ESP-IDF as a library to a custom CMake projects for all targets" IDF_AS_LIB=$IDF_PATH/examples/build_system/cmake/idf_as_lib # note: we just need to run cmake - for TARGET in "esp32" "esp32s2" "esp32s3" "esp32c3" "esp32h2" "esp32c2" + for TARGET in "esp32" "esp32s2" "esp32s3" "esp32c3" "esp32c2" do echo "Build idf_as_lib for $TARGET target" rm -rf build