File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -410,6 +410,10 @@ jobs:
410410 - restore_build_cache:
411411 cacheType: << parameters.cacheType >>
412412
413+ - run:
414+ name: Print some vars
415+ command: echo "-PtaskPartitionCount=${CIRCLE_NODE_TOTAL} -PtaskPartition=${CIRCLE_NODE_INDEX}"
416+
413417 - run:
414418 name: Check Project
415419 command: >-
@@ -1101,7 +1105,6 @@ build_test_jobs: &build_test_jobs
11011105 parallelism: 4
11021106 gradleTarget: ":instrumentationCheck"
11031107 cacheType: inst
1104- triggeredBy: *instrumentation_modules
11051108
11061109 - check:
11071110 requires:
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ test_published_artifacts:
150150 variables :
151151 BUILD_CACHE_TYPE : lib
152152 script :
153- - ./gradlew $GRADLE_TARGET -PskipTests -PrunBuildSrcTests -PskipSpotless $GRADLE_ARGS
153+ - ./gradlew $GRADLE_TARGET -PskipTests -PrunBuildSrcTests -PskipSpotless -PtaskPartitionCount=$CI_NODE_TOTAL -PtaskPartition=$CI_NODE_INDEX $GRADLE_ARGS
154154 after_script :
155155 - .circleci/collect_reports.sh --destination ./check_reports --move
156156 artifacts :
@@ -166,11 +166,13 @@ check_base:
166166
167167check_inst :
168168 extends : .check_job
169+ parallel : 4
169170 variables :
170171 GRADLE_TARGET : " :instrumentationCheck"
171172
172173check_smoke :
173174 extends : .check_job
175+ parallel : 4
174176 variables :
175177 GRADLE_TARGET : " :smokeCheck"
176178
You can’t perform that action at this time.
0 commit comments