@@ -167,40 +167,40 @@ tar:
167167 expire_in : 2 days
168168
169169# run tests with coverage profile
170- run_ut_with_coverage :
171- stage : build
172- image : maven:3.9.12-eclipse-temurin-21
173- extends :
174- - .build_cache
175- - .no_release_rules
176- script :
177- - mvn $MAVEN_CLI_OPTS -P code-coverage clean verify -DskipTests=false -Drun.slow.tests
178- artifacts :
179- reports :
180- junit :
181- - " **/target/surefire-reports/TEST-*.xml"
182- - " **/target/failsafe-reports/TEST-*.xml"
183- paths :
184- # pass .exec files and compiled classes to the next stage
185- - " **/target/coverage-reports/jacoco-ut.exec"
186- - " **/target/classes/"
187- expire_in : 1 day
170+ # run_ut_with_coverage:
171+ # stage: build
172+ # image: maven:3.9.12-eclipse-temurin-21
173+ # extends:
174+ # - .build_cache
175+ # - .no_release_rules
176+ # script:
177+ # - mvn $MAVEN_CLI_OPTS -P code-coverage clean verify -DskipTests=false -Drun.slow.tests
178+ # artifacts:
179+ # reports:
180+ # junit:
181+ # - "**/target/surefire-reports/TEST-*.xml"
182+ # - "**/target/failsafe-reports/TEST-*.xml"
183+ # paths:
184+ # #pass .exec files and compiled classes to the next stage
185+ # - "**/target/coverage-reports/jacoco-ut.exec"
186+ # - "**/target/classes/"
187+ # expire_in: 1 day
188188
189189# run unit tests without coverage
190- run_unit_tests :
191- stage : build
192- image : maven:3.9.12-eclipse-temurin-21
193- extends :
194- - .build_cache
195- - .upload_rules
196- script :
197- - mvn $MAVEN_CLI_OPTS clean verify -DskipTests=false -Drun.slow.tests
198- artifacts :
199- reports :
200- junit :
201- - " **/target/surefire-reports/TEST-*.xml"
202- - " **/target/failsafe-reports/TEST-*.xml"
203- expire_in : 1 day
190+ # run_unit_tests:
191+ # stage: build
192+ # image: maven:3.9.12-eclipse-temurin-21
193+ # extends:
194+ # - .build_cache
195+ # - .upload_rules
196+ # script:
197+ # - mvn $MAVEN_CLI_OPTS clean verify -DskipTests=false -Drun.slow.tests
198+ # artifacts:
199+ # reports:
200+ # junit:
201+ # - "**/target/surefire-reports/TEST-*.xml"
202+ # - "**/target/failsafe-reports/TEST-*.xml"
203+ # expire_in: 1 day
204204
205205spotbugs :
206206 stage : build
0 commit comments