Skip to content

Commit 26a7adb

Browse files
add some debug
1 parent 10ecbb9 commit 26a7adb

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.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: >-
@@ -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:

.gitlab-ci.yml

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

167167
check_inst:
168168
extends: .check_job
169+
parallel: 4
169170
variables:
170171
GRADLE_TARGET: ":instrumentationCheck"
171172

172173
check_smoke:
173174
extends: .check_job
175+
parallel: 4
174176
variables:
175177
GRADLE_TARGET: ":smokeCheck"
176178

0 commit comments

Comments
 (0)