Skip to content

Commit 158eb78

Browse files
committed
ci: add CI_JOB_ID as suffix to help ci-dashboard parse info easier
1 parent 95fbd6b commit 158eb78

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.idf_build_apps.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,12 @@ ignore_warning_files = [
2121

2222
build_dir = "build_@t_@w"
2323
build_log_filename = "build_log.txt"
24-
size_json_filename = "size.json"
24+
size_json_filename = "size_${CI_JOB_ID}.json"
2525

2626
verbose = 1 # INFO
2727

2828
# collect
2929
collect_app_info_filename = "app_info_${CI_JOB_NAME_SLUG}.txt"
30-
collect_size_info_filename = "size_info_${CI_JOB_NAME_SLUG}.txt" # TODO remove this file when ci-dashboard is ready
3130
junitxml = "build_summary_${CI_JOB_NAME_SLUG}.xml"
3231

3332
# manifest

.idf_ci.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ patterns = [
7474
bucket = "idf-artifacts"
7575
patterns = [
7676
'**/build*/build_log.txt',
77-
'**/build*/size.json',
77+
'**/build*/size*.json',
7878
]
7979

8080
[gitlab.artifacts.s3.junit]

tools/ci/dynamic_pipelines/templates/.dynamic_jobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
# CI specific options start from "--known-failure-cases-file xxx". could ignore when running locally
8383
- run_cmd pytest $nodes
8484
--pipeline-id $PARENT_PIPELINE_ID
85-
--junitxml=XUNIT_RESULT_${CI_JOB_NAME_SLUG}.xml
85+
--junitxml=XUNIT_RESULT_${CI_JOB_ID}.xml
8686
--ignore-result-files ${KNOWN_FAILURE_CASES_FILE_NAME}
8787
--parallel-count ${CI_NODE_TOTAL:-1}
8888
--parallel-index ${CI_NODE_INDEX:-1}

0 commit comments

Comments
 (0)