This is an automated email from the ASF dual-hosted git repository.
hxd pushed a commit to branch jenkins-disable-integration
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/jenkins-disable-integration by
this push:
new c08b6b9dd2 reduce parallel for jenkins
c08b6b9dd2 is described below
commit c08b6b9dd2e40a0a30a685fbd72e2c604a2c42d2
Author: xiangdong huang <[email protected]>
AuthorDate: Sun Dec 25 10:21:35 2022 +0800
reduce parallel for jenkins
---
Jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 75b3031efb..620784927a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -87,7 +87,7 @@ pipeline {
}
steps {
echo 'Building and Unit Test...'
- sh "mvn -T 1C ${MVN_TEST_FAIL_IGNORE} clean install -pl
'!integration-test' -DskipITs"
+ sh "mvn ${MVN_TEST_FAIL_IGNORE} clean install -pl
'!integration-test' -DskipITs"
}
post {
always {
@@ -105,7 +105,7 @@ pipeline {
}
steps {
echo 'Integration Test...'
- sh "mvn ${MVN_TEST_FAIL_IGNORE} verify -P ClusterIT -pl
integration-test -am -DskipUTs -DintegrationTest.threadCount=5
-DintegrationTest.forkCount=5"
+ sh "mvn ${MVN_TEST_FAIL_IGNORE} verify -P ClusterIT -pl
integration-test -am -DskipUTs -DintegrationTest.threadCount=3
-DintegrationTest.forkCount=3"
}
post {
always {