2017-01-09 04:49:16 -05:00
|
|
|
/*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
* distributed with this work for additional information
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
* to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance
|
|
|
|
* with the License. You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
|
|
|
|
2018-12-27 08:17:05 -05:00
|
|
|
properties([buildDiscarder(logRotator(artifactNumToKeepStr: '5', numToKeepStr: env.BRANCH_NAME=='master'?'5':'1'))])
|
2017-01-09 04:49:16 -05:00
|
|
|
|
2017-12-11 08:42:14 -05:00
|
|
|
def buildOs = 'linux'
|
2018-06-08 15:44:03 -04:00
|
|
|
def buildJdk = '8'
|
2019-01-23 18:12:00 -05:00
|
|
|
def buildMvn = '3.6.0'
|
2018-05-21 13:20:33 -04:00
|
|
|
def runITsOses = ['linux', 'windows']
|
2018-11-11 13:18:00 -05:00
|
|
|
def runITsJdks = ['7', '8', '11']
|
2019-01-23 18:12:00 -05:00
|
|
|
def runITsMvn = '3.6.0'
|
2018-05-21 13:20:33 -04:00
|
|
|
def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
|
2017-02-21 12:33:54 -05:00
|
|
|
def tests
|
2017-01-09 04:49:16 -05:00
|
|
|
|
|
|
|
try {
|
2017-03-23 22:25:17 -04:00
|
|
|
|
2018-07-15 04:35:40 -04:00
|
|
|
def osNode = jenkinsEnv.labelForOS(buildOs)
|
|
|
|
node(jenkinsEnv.nodeSelection(osNode)) {
|
2017-01-09 04:49:16 -05:00
|
|
|
dir('build') {
|
2017-03-23 22:25:17 -04:00
|
|
|
stage('Checkout') {
|
|
|
|
checkout scm
|
2017-01-09 04:49:16 -05:00
|
|
|
}
|
2017-03-23 22:25:17 -04:00
|
|
|
|
|
|
|
def WORK_DIR=pwd()
|
2019-05-28 23:13:49 -04:00
|
|
|
def MAVEN_GOAL='verify'
|
|
|
|
|
|
|
|
stage('Configure deploy') {
|
2019-05-28 23:20:38 -04:00
|
|
|
if (env.BRANCH=='master'){
|
|
|
|
MAVEN_GOAL='deploy -DdeployAtEnd=true'
|
2019-05-28 23:13:49 -04:00
|
|
|
}
|
|
|
|
}
|
2017-03-23 22:25:17 -04:00
|
|
|
|
|
|
|
stage('Build / Unit Test') {
|
2017-12-11 08:42:14 -05:00
|
|
|
String jdkName = jenkinsEnv.jdkFromVersion(buildOs, buildJdk)
|
|
|
|
String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn)
|
|
|
|
withMaven(jdk: jdkName, maven: mvnName, mavenLocalRepo:"${WORK_DIR}/.repository", options:[
|
2017-12-11 08:45:00 -05:00
|
|
|
artifactsPublisher(disabled: false),
|
2017-12-11 08:42:14 -05:00
|
|
|
junitPublisher(ignoreAttachments: false),
|
2017-12-11 08:45:00 -05:00
|
|
|
findbugsPublisher(disabled: false),
|
|
|
|
openTasksPublisher(disabled: false),
|
2017-12-11 08:42:14 -05:00
|
|
|
dependenciesFingerprintPublisher(),
|
|
|
|
invokerPublisher(),
|
|
|
|
pipelineGraphPublisher()
|
|
|
|
]) {
|
2019-05-28 23:13:49 -04:00
|
|
|
sh "mvn clean ${MAVEN_GOAL} -B -U -e -fae -V -Dmaven.test.failure.ignore=true"
|
2017-03-23 22:25:17 -04:00
|
|
|
}
|
|
|
|
dir ('apache-maven/target') {
|
|
|
|
sh "mv apache-maven-*-bin.zip apache-maven-dist.zip"
|
|
|
|
stash includes: 'apache-maven-dist.zip', name: 'dist'
|
|
|
|
}
|
2017-01-09 04:49:16 -05:00
|
|
|
}
|
2017-03-23 22:25:17 -04:00
|
|
|
|
2018-03-19 18:07:44 -04:00
|
|
|
tests = resolveScm source: [$class: 'GitSCMSource', credentialsId: '', id: '_', remote: 'https://gitbox.apache.org/repos/asf/maven-integration-testing.git', traits: [[$class: 'jenkins.plugins.git.traits.BranchDiscoveryTrait'], [$class: 'GitToolSCMSourceTrait', gitTool: 'Default']]], targets: [BRANCH_NAME, 'master']
|
2017-01-09 04:49:16 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-21 13:20:33 -04:00
|
|
|
Map runITsTasks = [:]
|
|
|
|
for (String os in runITsOses) {
|
|
|
|
for (def jdk in runITsJdks) {
|
|
|
|
String osLabel = jenkinsEnv.labelForOS(os);
|
|
|
|
String jdkName = jenkinsEnv.jdkFromVersion(os, "${jdk}")
|
|
|
|
String mvnName = jenkinsEnv.mvnFromVersion(os, "${runITsMvn}")
|
|
|
|
echo "OS: ${os} JDK: ${jdk} => Label: ${osLabel} JDK: ${jdkName}"
|
2017-03-23 22:25:17 -04:00
|
|
|
|
2018-05-21 13:20:33 -04:00
|
|
|
String stageId = "${os}-jdk${jdk}"
|
|
|
|
String stageLabel = "Run ITs ${os.capitalize()} Java ${jdk}"
|
|
|
|
runITsTasks[stageId] = {
|
2018-07-15 04:35:40 -04:00
|
|
|
node(jenkinsEnv.nodeSelection(osLabel)) {
|
2018-05-21 13:20:33 -04:00
|
|
|
stage("${stageLabel}") {
|
|
|
|
// on Windows, need a short path or we hit 256 character limit for paths
|
|
|
|
// using EXECUTOR_NUMBER guarantees that concurrent builds on same agent
|
2018-10-14 18:20:25 -04:00
|
|
|
// will not trample each other plus workaround for JENKINS-52657
|
|
|
|
dir(isUnix() ? 'test' : "c:\\mvn-it-${EXECUTOR_NUMBER}.tmp") {
|
2018-05-21 13:20:33 -04:00
|
|
|
def WORK_DIR=pwd()
|
|
|
|
checkout tests
|
|
|
|
if (isUnix()) {
|
|
|
|
sh "rm -rvf $WORK_DIR/apache-maven-dist.zip $WORK_DIR/it-local-repo"
|
|
|
|
} else {
|
|
|
|
bat "if exist it-local-repo rmdir /s /q it-local-repo"
|
|
|
|
bat "if exist apache-maven-dist.zip del /q apache-maven-dist.zip"
|
|
|
|
}
|
|
|
|
unstash 'dist'
|
|
|
|
withMaven(jdk: jdkName, maven: mvnName, mavenLocalRepo:"${WORK_DIR}/it-local-repo", options:[
|
|
|
|
junitPublisher(ignoreAttachments: false)
|
|
|
|
]) {
|
2018-07-01 07:10:28 -04:00
|
|
|
String cmd = "${runITscommand} -DmavenDistro=$WORK_DIR/apache-maven-dist.zip -Dmaven.test.failure.ignore=true"
|
2018-07-01 09:07:02 -04:00
|
|
|
if (stageId.endsWith('-jdk7')) {
|
2018-07-01 04:41:07 -04:00
|
|
|
// Java 7u80 has TLS 1.2 disabled by default: need to explicitly enable
|
|
|
|
cmd = "${cmd} -Dhttps.protocols=TLSv1.2"
|
2018-06-30 19:07:16 -04:00
|
|
|
}
|
|
|
|
|
2018-05-21 13:20:33 -04:00
|
|
|
if (isUnix()) {
|
2018-06-30 19:07:16 -04:00
|
|
|
sh "${cmd}"
|
2018-05-21 13:20:33 -04:00
|
|
|
} else {
|
2018-06-30 19:07:16 -04:00
|
|
|
bat "${cmd}"
|
2018-05-21 13:20:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
deleteDir() // clean up after ourselves to reduce disk space
|
2017-12-11 08:42:14 -05:00
|
|
|
}
|
2017-01-09 04:49:16 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-21 13:20:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// run the parallel ITs
|
|
|
|
parallel(runITsTasks)
|
2017-03-23 22:25:17 -04:00
|
|
|
|
2017-12-11 08:42:14 -05:00
|
|
|
// JENKINS-34376 seems to make it hard to detect the aborted builds
|
|
|
|
} catch (org.jenkinsci.plugins.workflow.steps.FlowInterruptedException e) {
|
2019-01-23 18:12:00 -05:00
|
|
|
echo "[FAILURE-002] FlowInterruptedException ${e}"
|
2017-12-11 08:42:14 -05:00
|
|
|
// this ambiguous condition means a user probably aborted
|
|
|
|
if (e.causes.size() == 0) {
|
|
|
|
currentBuild.result = "ABORTED"
|
|
|
|
} else {
|
|
|
|
currentBuild.result = "FAILURE"
|
|
|
|
}
|
|
|
|
throw e
|
|
|
|
} catch (hudson.AbortException e) {
|
2019-01-23 18:12:00 -05:00
|
|
|
echo "[FAILURE-003] AbortException ${e}"
|
2017-12-11 08:42:14 -05:00
|
|
|
// this ambiguous condition means during a shell step, user probably aborted
|
|
|
|
if (e.getMessage().contains('script returned exit code 143')) {
|
|
|
|
currentBuild.result = "ABORTED"
|
|
|
|
} else {
|
|
|
|
currentBuild.result = "FAILURE"
|
2017-01-09 04:49:16 -05:00
|
|
|
}
|
2017-12-11 08:42:14 -05:00
|
|
|
throw e
|
|
|
|
} catch (InterruptedException e) {
|
2019-01-23 18:12:00 -05:00
|
|
|
echo "[FAILURE-004] ${e}"
|
2017-12-11 08:42:14 -05:00
|
|
|
currentBuild.result = "ABORTED"
|
|
|
|
throw e
|
|
|
|
} catch (Throwable e) {
|
2019-01-23 18:12:00 -05:00
|
|
|
echo "[FAILURE-001] ${e}"
|
2017-12-11 08:42:14 -05:00
|
|
|
currentBuild.result = "FAILURE"
|
|
|
|
throw e
|
|
|
|
} finally {
|
|
|
|
// notify completion
|
|
|
|
stage("Notifications") {
|
|
|
|
jenkinsNotify()
|
|
|
|
}
|
2017-01-09 04:49:16 -05:00
|
|
|
}
|