File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed 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: >-
@@ -1099,7 +1103,6 @@ build_test_jobs: &build_test_jobs
10991103 parallelism: 4
11001104 gradleTarget: ":instrumentationCheck"
11011105 cacheType: inst
1102- triggeredBy: *instrumentation_modules
11031106
11041107 - check:
11051108 requires:
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ test_published_artifacts:
147147 variables :
148148 BUILD_CACHE_TYPE : lib
149149 script :
150- - ./gradlew $GRADLE_TARGET -PskipTests -PrunBuildSrcTests -PskipSpotless $GRADLE_ARGS
150+ - ./gradlew $GRADLE_TARGET -PskipTests -PrunBuildSrcTests -PskipSpotless -PtaskPartitionCount=$CI_NODE_TOTAL -PtaskPartition=$CI_NODE_INDEX $GRADLE_ARGS
151151 after_script :
152152 - .circleci/collect_reports.sh --destination ./check_reports --move
153153 artifacts :
@@ -163,11 +163,13 @@ check_base:
163163
164164check_inst :
165165 extends : .check_job
166+ parallel : 4
166167 variables :
167168 GRADLE_TARGET : " :instrumentationCheck"
168169
169170check_smoke :
170171 extends : .check_job
172+ parallel : 4
171173 variables :
172174 GRADLE_TARGET : " :smokeCheck"
173175
You can’t perform that action at this time.
0 commit comments