This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/master by this push:
new c11b9f1 Revert parallelism in CI IT build (#3164)
c11b9f1 is described below
commit c11b9f102f6d54bb95a9db65fc8ca0320137c457
Author: kezhenxu94 <[email protected]>
AuthorDate: Thu Jul 25 21:22:46 2019 +0800
Revert parallelism in CI IT build (#3164)
* Don't build JavaDoc since we don't host JavaDoc pages
* Update Jenkinsfile
* Revert back to where it's single-threaded job
---
Jenkinsfile | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 568c3ec..859fb1a 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -27,10 +27,6 @@ pipeline {
skipStagesAfterUnstable()
}
- environment {
- MAVEN_OPTS = '-XX:+TieredCompilation -XX:TieredStopAtLevel=1
-XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:-UseGCOverheadLimit
-Xmx3g'
- }
-
stages {
stage('Install & Test') {
parallel {
@@ -63,10 +59,8 @@ pipeline {
stage('Test & Report') {
steps {
- // separate lightweight checks that don't
support parallel run
- sh './mvnw checkstyle:check apache-rat:check'
- sh './mvnw -Dcheckstyle.skip -Drat.skip -T2
-Dmaven.compile.fork -Dmaven.compiler.maxmem=3072
-P"agent,backend,ui,dist,CI-with-IT"
org.jacoco:jacoco-maven-plugin:0.8.3:prepare-agent clean install
org.jacoco:jacoco-maven-plugin:0.8.3:report coveralls:report'
- sh './mvnw -DskipTests -Dcheckstyle.skip
-Drat.skip -T 2C javadoc:javadoc'
+ sh './mvnw
-P"agent,backend,ui,dist,CI-with-IT"
org.jacoco:jacoco-maven-plugin:0.8.3:prepare-agent clean install
org.jacoco:jacoco-maven-plugin:0.8.3:report coveralls:report'
+ sh './mvnw javadoc:javadoc
-Dmaven.test.skip=true'
}
}
}