Skip to content

Commit 8c7e2be

Browse files
first pass checks
1 parent 99139bb commit 8c7e2be

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.gitlab-ci.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,47 @@ test_published_artifacts:
140140
paths:
141141
- ./check_reports
142142

143+
.check_job:
144+
extends: .gradle_build
145+
needs: [ build ]
146+
stage: tests
147+
variables:
148+
BUILD_CACHE_TYPE: lib
149+
script:
150+
- ./gradlew $GRADLE_TARGET -PskipTests -PrunBuildSrcTests -PskipSpotless $GRADLE_ARGS
151+
after_script:
152+
- .circleci/collect_reports.sh --destination ./check_reports --move
153+
artifacts:
154+
when: always
155+
paths:
156+
- ./check_reports
157+
- '.gradle/daemon/*/*.out.log'
158+
159+
check_base:
160+
extends: .check_job
161+
variables:
162+
GRADLE_TARGET: ":baseCheck"
163+
164+
check_inst:
165+
extends: .check_job
166+
variables:
167+
GRADLE_TARGET: ":instrumentationCheck"
168+
169+
check_smoke:
170+
extends: .check_job
171+
variables:
172+
GRADLE_TARGET: ":smokeCheck"
173+
174+
check_profiling:
175+
extends: .check_job
176+
variables:
177+
GRADLE_TARGET: ":profilingCheck"
178+
179+
check_debugger:
180+
extends: .check_job
181+
variables:
182+
GRADLE_TARGET: ":debuggerCheck"
183+
143184
muzzle:
144185
extends: .gradle_build
145186
needs: [ build ]

0 commit comments

Comments
 (0)