ci: update file patterns CMakeList.txt to CMakeLists.txt

This commit is contained in:
Fu Hanxi
2025-08-12 10:48:11 +02:00
parent c3960c810e
commit 4115f5836a
3 changed files with 4 additions and 4 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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.