From efe0f2bf9bc226bf728e84c678b8b87fe46f6ac3 Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Wed, 20 Dec 2023 12:52:40 +0530 Subject: [PATCH] ci: disable external platform builds --- .gitlab-ci.yml | 5 ++++- examples/.build-rules.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5751c0cdb..c1f428016 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -232,7 +232,10 @@ build_esp_matter_examples_non_pytest_idf_v5_1: variables: IDF_VERSION: "6b1f40b9bfb91ec82fab4a60e5bfb4ca0c9b062f" script: - - *build_external_platform_example + # Disabling the external platform builds till we fix the build problem + # due to https://github.com/project-chip/connectedhomeip/pull/30531 + # JIRA tracker: CON-942 + # - *build_external_platform_example - *build_esp32c6_thread_example # mfg_test_app needs an secure boot signing key, generating one here diff --git a/examples/.build-rules.yml b/examples/.build-rules.yml index 6ebe3432a..35c92791f 100644 --- a/examples/.build-rules.yml +++ b/examples/.build-rules.yml @@ -1,8 +1,11 @@ # Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps +# Disabling the external platform builds till we fix the build problem +# due to https://github.com/project-chip/connectedhomeip/pull/30531 +# JIRA tracker: CON-942 examples/blemesh_bridge: enable: - - if: IDF_TARGET in ["esp32", "esp32c3"] + - if: IDF_TARGET in [""] temporary: true reason: the other targets are not tested yet