From 201d7d19baebde75ef5c0e1501b523509c40cf50 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Tue, 26 Mar 2024 10:58:49 +0100 Subject: [PATCH 1/2] ci: increase ccache size from 20GB to 50GB --- .gitlab/ci/common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab/ci/common.yml b/.gitlab/ci/common.yml index de628f12bd..6d11621af0 100644 --- a/.gitlab/ci/common.yml +++ b/.gitlab/ci/common.yml @@ -95,7 +95,7 @@ variables: # host mapping volume to share ccache between runner concurrent jobs CCACHE_DIR: "/cache/idf_ccache" - CCACHE_MAXSIZE: "20G" + CCACHE_MAXSIZE: "50G" ################################################ # `before_script` and `after_script` Templates # From 85f63f7ad2efb256364270f7d648406a3a0e3e9c Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Tue, 26 Mar 2024 10:59:16 +0100 Subject: [PATCH 2/2] ci: decrease test case amount per job for now some jobs are reaching 1 hour timeout --- tools/ci/dynamic_pipelines/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/dynamic_pipelines/constants.py b/tools/ci/dynamic_pipelines/constants.py index b59c69dd04..21f903338d 100644 --- a/tools/ci/dynamic_pipelines/constants.py +++ b/tools/ci/dynamic_pipelines/constants.py @@ -12,7 +12,7 @@ DEFAULT_TEST_PATHS = [ ] DEFAULT_APPS_BUILD_PER_JOB = 60 -DEFAULT_CASES_TEST_PER_JOB = 60 +DEFAULT_CASES_TEST_PER_JOB = 30 DEFAULT_BUILD_CHILD_PIPELINE_FILEPATH = os.path.join(IDF_PATH, 'build_child_pipeline.yml') DEFAULT_TARGET_TEST_CHILD_PIPELINE_FILEPATH = os.path.join(IDF_PATH, 'target_test_child_pipeline.yml')