2018-05-06 04:05:44 -04: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.
|
|
|
|
*/
|
2017-03-07 05:18:15 -05:00
|
|
|
|
2018-05-06 04:05:44 -04:00
|
|
|
/**
|
|
|
|
* Main build file for Jenkins Multibranch pipeline.
|
|
|
|
*
|
|
|
|
* The pipeline builds, runs the test and deploys to the archiva snapshot repository.
|
|
|
|
*
|
|
|
|
* Uses one stage for build and deploy to avoid running it multiple times.
|
|
|
|
* The settings for deployment with the credentials must be provided by a MavenSettingsProvider.
|
|
|
|
*
|
|
|
|
* Only the war and zip artifacts are archived in the jenkins build archive.
|
|
|
|
*/
|
|
|
|
LABEL = 'ubuntu'
|
|
|
|
buildJdk = 'JDK 1.8 (latest)'
|
2018-12-13 21:04:54 -05:00
|
|
|
buildJdk11 = 'JDK 11 (latest)'
|
2017-03-07 05:18:15 -05:00
|
|
|
|
2018-12-29 19:58:50 -05:00
|
|
|
def defaultPublishers = [artifactsPublisher(disabled: false), junitPublisher(ignoreAttachments: false, disabled: false),
|
|
|
|
findbugsPublisher(disabled: true), openTasksPublisher(disabled: true),
|
|
|
|
dependenciesFingerprintPublisher(disabled: false), invokerPublisher(disabled: true),
|
|
|
|
pipelineGraphPublisher(disabled: false)]
|
|
|
|
|
2018-05-06 04:05:44 -04:00
|
|
|
pipeline {
|
2018-12-29 07:11:39 -05:00
|
|
|
agent { label "${LABEL}" }
|
2018-12-27 14:51:15 -05:00
|
|
|
options {
|
2018-12-29 17:49:54 -05:00
|
|
|
durabilityHint('PERFORMANCE_OPTIMIZED')
|
2018-12-29 07:00:49 -05:00
|
|
|
buildDiscarder(logRotator(numToKeepStr: '7', artifactNumToKeepStr: '5'))
|
2018-12-29 20:04:25 -05:00
|
|
|
timeout(time: 120, unit: 'MINUTES')
|
2018-12-27 14:51:15 -05:00
|
|
|
}
|
2018-05-06 04:05:44 -04:00
|
|
|
|
|
|
|
stages {
|
2018-12-29 19:59:50 -05:00
|
|
|
stage( 'BuildAndDeploy-JDK8' ) {
|
2018-12-29 20:04:57 -05:00
|
|
|
steps {
|
2018-12-29 19:59:50 -05:00
|
|
|
mavenBuild( buildJdk, "clean deploy -U -fae -T3", 'Maven 3.5.2', defaultPublishers)
|
|
|
|
}
|
|
|
|
}
|
2018-12-27 16:42:57 -05:00
|
|
|
// stage('JDK11') {
|
|
|
|
// steps {
|
|
|
|
// ws("${env.JOB_NAME}-JDK11") {
|
|
|
|
// checkout scm
|
|
|
|
// timeout(120) {
|
|
|
|
// mavenBuild(buildJdk11,"clean install -U -fae",
|
|
|
|
// [junitPublisher(disabled: false, ignoreAttachments: false)])
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
2018-12-29 19:59:50 -05:00
|
|
|
|
2017-03-07 05:18:15 -05:00
|
|
|
}
|
|
|
|
|
2018-05-06 04:05:44 -04:00
|
|
|
post {
|
2018-12-28 18:31:56 -05:00
|
|
|
always {
|
|
|
|
cleanWs deleteDirs: true, notFailBuild: true, patterns: [[pattern: '.repository', type: 'EXCLUDE']]
|
|
|
|
}
|
2018-05-06 04:05:44 -04:00
|
|
|
unstable {
|
2018-12-29 20:17:40 -05:00
|
|
|
scripts{
|
|
|
|
asfStandardBuild.notifyBuild( "Unstable Build ")
|
|
|
|
}
|
2018-05-06 04:05:44 -04:00
|
|
|
}
|
2018-05-18 13:32:06 -04:00
|
|
|
failure {
|
2018-12-29 20:17:40 -05:00
|
|
|
scripts{
|
|
|
|
asfStandardBuild.notifyBuild( "Error in redback core build ")
|
|
|
|
}
|
2018-05-06 04:05:44 -04:00
|
|
|
}
|
2018-05-06 10:59:23 -04:00
|
|
|
success {
|
|
|
|
script {
|
|
|
|
def previousResult = currentBuild.previousBuild?.result
|
2018-12-29 20:17:40 -05:00
|
|
|
if (previousResult && !currentBuild.resultIsWorseOrEqualTo( previousResult ) ) {
|
|
|
|
scripts{
|
|
|
|
asfStandardBuild.notifyBuild( "Fixed" )
|
|
|
|
}
|
2018-05-06 10:59:23 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-06 04:05:44 -04:00
|
|
|
}
|
2017-03-07 05:18:15 -05:00
|
|
|
}
|
2018-05-06 10:59:23 -04:00
|
|
|
// vim: et:ts=4:sw=4:ft=groovy
|