From 4115f5836a5cb66cf69da9ba7aa9d210319a7132 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Tue, 12 Aug 2025 10:48:11 +0200 Subject: [PATCH] ci: update file patterns CMakeList.txt to CMakeLists.txt --- .gitlab/ci/docs.yml | 2 +- .gitlab/ci/rules.yml | 2 +- tools/test_apps/configs/README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab/ci/docs.yml b/.gitlab/ci/docs.yml index b15b6880df..886dab06dd 100644 --- a/.gitlab/ci/docs.yml +++ b/.gitlab/ci/docs.yml @@ -8,7 +8,7 @@ .patterns-docs-partial: &patterns-docs-partial - "components/**/*.h" - - "components/**/CMakeList.txt" + - "components/**/CMakeLists.txt" - "components/**/sdkconfig*" - "tools/tools.json" - "tools/idf_tools.py" diff --git a/.gitlab/ci/rules.yml b/.gitlab/ci/rules.yml index f1077b89e7..b2f0e384bd 100644 --- a/.gitlab/ci/rules.yml +++ b/.gitlab/ci/rules.yml @@ -10,7 +10,7 @@ - "**/*.{c,C,cpp}" - "**/*.{h,H,hpp}" - "components/**/Kconfig" - - "components/**/CMakeList.txt" + - "components/**/CMakeLists.txt" .patterns-python-cache: &patterns-python-cache - "tools/requirements.json" diff --git a/tools/test_apps/configs/README.md b/tools/test_apps/configs/README.md index 3e3c63e97b..b6eada6541 100644 --- a/tools/test_apps/configs/README.md +++ b/tools/test_apps/configs/README.md @@ -2,7 +2,7 @@ Certain combinations of configs, e.g. stack and heap debug configs, are useful to set in most test apps. -To facilitiate re-use, this folder contains some of the most common ones. +To facilitate reuse, this folder contains some of the most common ones. These can then be added to the list of default configs in test apps: @@ -10,6 +10,6 @@ These can then be added to the list of default configs in test apps: list(PREPEND SDKCONFIG_DEFAULTS "$ENV{IDF_PATH}/tools/test_apps/configs/sdkconfig.debug_helpers" "sdkconfig.defaults") ``` -Note that this must be set in the top-level project `CMakelist.txt`. +Note that this must be set in the top-level project `CMakelists.txt`. These files should not be considered stable, and are thus not recommended for use outside of IDF.