Merge branch 'fix/cmake_clang_artifacts' into 'master'

ci: fix uploading build artifacts

Closes CII-45

See merge request espressif/esp-idf!43565
This commit is contained in:
Fu Hanxi
2025-12-01 14:12:39 +01:00
3 changed files with 2 additions and 6 deletions
-2
View File
@@ -72,8 +72,6 @@ build_template_app:
#
# keep the log file to help debug
- "**/build*/build_log.txt"
# keep the size info to help track the binary size
- size_info.txt
- "**/build*/size*.json"
expire_in: 1 week
when: always
+1 -1
View File
@@ -100,7 +100,7 @@ patterns = [
[gitlab.artifacts.s3.longterm]
bucket = "longterm"
if_clause = '"$CI_COMMIT_REF_NAME" == "master"'
if_clause = 'CI_COMMIT_REF_NAME == "master"'
patterns = [
'**/build*/size*.json',
]
+1 -3
View File
@@ -41,9 +41,7 @@ class IdfCMakeApp(CMakeApp):
)
rmdir(
self.build_path,
exclude_file_patterns=[
'build_log.txt',
],
exclude_file_patterns=['build_log.txt', 'size*.json'],
)