Skip to content

Commit f9de4b5

Browse files
add some debug
1 parent 8c7e2be commit f9de4b5

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.circleci/config.continue.yml.j2

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

.gitlab-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

164164
check_inst:
165165
extends: .check_job
166+
parallel: 4
166167
variables:
167168
GRADLE_TARGET: ":instrumentationCheck"
168169

169170
check_smoke:
170171
extends: .check_job
172+
parallel: 4
171173
variables:
172174
GRADLE_TARGET: ":smokeCheck"
173175

0 commit comments

Comments
 (0)