This is an automated email from the ASF dual-hosted git repository.
martin_s pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva.git
The following commit(s) were added to refs/heads/master by this push:
new ea500a7 Disabling JDK11 build until problems are fixed
ea500a7 is described below
commit ea500a724eee216eacb8e23eab32c52ae91263f3
Author: Martin Stockhammer <[email protected]>
AuthorDate: Thu Dec 27 22:37:18 2018 +0100
Disabling JDK11 build until problems are fixed
---
Jenkinsfile | 60 ++++++++++++++++++++++++++++++------------------------------
1 file changed, 30 insertions(+), 30 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 5a1594b..e526a78 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -179,36 +179,36 @@ pipeline {
}
}
}
- stage('JDK11') {
- environment {
- ARCHIVA_USER_CONFIG_FILE =
'/tmp/archiva-master-jdk-11-${env.JOB_NAME}.xml'
- }
- steps {
- ws("${env.JOB_NAME}-JDK10") {
- checkout scm
- timeout(120) {
- withMaven(maven: buildMvn, jdk: buildJdk11,
- mavenSettingsConfig: deploySettings,
- mavenLocalRepo: ".repository",
- publisherStrategy: 'EXPLICIT',
- mavenOpts: mavenOpts,
- options: [junitPublisher(disabled:
false, ignoreAttachments: false)]
- )
- {
- sh "mvn clean install -U -B -e
-fae -Dmaven.compiler.fork=true -Pci-build"
- }
- }
- }
- }
- post {
- always {
- sh "rm -f
/tmp/archiva-master-jdk-11-${env.JOB_NAME}.xml"
- }
- success {
- cleanWs deleteDirs: true, notFailBuild: true,
patterns: [[pattern: '.repository', type: 'EXCLUDE']]
- }
- }
- }
+// stage('JDK11') {
+// environment {
+// ARCHIVA_USER_CONFIG_FILE =
'/tmp/archiva-master-jdk-11-${env.JOB_NAME}.xml'
+// }
+// steps {
+// ws("${env.JOB_NAME}-JDK10") {
+// checkout scm
+// timeout(120) {
+// withMaven(maven: buildMvn, jdk: buildJdk11,
+// mavenSettingsConfig:
deploySettings,
+// mavenLocalRepo: ".repository",
+// publisherStrategy: 'EXPLICIT',
+// mavenOpts: mavenOpts,
+// options: [junitPublisher(disabled:
false, ignoreAttachments: false)]
+// )
+// {
+// sh "mvn clean install -U -B -e
-fae -Dmaven.compiler.fork=true -Pci-build"
+// }
+// }
+// }
+// }
+// post {
+// always {
+// sh "rm -f
/tmp/archiva-master-jdk-11-${env.JOB_NAME}.xml"
+// }
+// success {
+// cleanWs deleteDirs: true, notFailBuild: true,
patterns: [[pattern: '.repository', type: 'EXCLUDE']]
+// }
+// }
+// }
}
}