archiva-redback-core/Jenkinsfile

137 lines
4.5 KiB
Plaintext
Raw Normal View History

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.
*/
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)'
buildJdk11 = 'JDK 11 (latest)'
2018-05-06 04:05:44 -04:00
pipeline {
agent {
label "${LABEL}"
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))
}
2018-05-06 04:05:44 -04:00
stages {
stage('Builds') {
parallel {
2018-05-06 04:05:44 -04:00
stage('BuildAndDeploy-JDK8') {
steps {
timeout(120) {
mavenBuild(buildJdk,"clean deploy -U -fae",
[artifactsPublisher(disabled: false),
junitPublisher(disabled: false, ignoreAttachments: false),
pipelineGraphPublisher(disabled: false)])
}
}
post {
failure {
notifyBuild("Failure in BuildAndDeploy Stage")
}
}
2018-05-06 04:05:44 -04: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-05-18 13:32:06 -04:00
}
}
}
2018-05-06 04:05:44 -04:00
post {
unstable {
2018-05-06 10:59:23 -04:00
notifyBuild("Unstable Build")
2018-05-06 04:05:44 -04:00
}
2018-05-18 13:32:06 -04:00
failure {
notifyBuild("Error in redback build")
2018-05-06 04:05:44 -04:00
}
2018-05-06 10:59:23 -04:00
success {
script {
def previousResult = currentBuild.previousBuild?.result
if (previousResult && !currentBuild.resultIsWorseOrEqualTo(previousResult)) {
notifyBuild("Fixed")
}
}
}
2018-05-06 04:05:44 -04:00
}
}
def mavenBuild(jdk, cmdline, options) {
buildMvn = 'Maven 3.5.2'
deploySettings = 'archiva-uid-jenkins'
def mavenOpts = '-Xms1g -Xmx2g -Djava.awt.headless=true'
withMaven(maven: buildMvn, jdk: "$jdk",
publisherStrategy: 'EXPLICIT',
mavenOpts: mavenOpts,
mavenSettingsConfig: deploySettings,
mavenLocalRepo: ".repository",
options: options
)
{
sh "mvn -V -B -T3 -e -Dmaven.test.failure.ignore=true $cmdline"
}
}
// Send a notification about the build status
2018-05-06 04:05:44 -04:00
def notifyBuild(String buildStatus) {
// default the value
buildStatus = buildStatus ?: "UNKNOWN"
2018-05-06 04:05:44 -04:00
def email = "notifications@archiva.apache.org"
def summary = "${env.JOB_NAME}#${env.BUILD_NUMBER} - ${buildStatus} - ${currentBuild?.currentResult}"
def detail = """<h4>Job: <a href='${env.JOB_URL}'>${env.JOB_NAME}</a> [#${env.BUILD_NUMBER}]</h4>
<p><b>${buildStatus}</b></p>
<table>
<tr><td>Build</td><td><a href='${env.BUILD_URL}'>${env.BUILD_URL}</a></td><tr>
<tr><td>Console</td><td><a href='${env.BUILD_URL}console'>${env.BUILD_URL}console</a></td><tr>
<tr><td>Test Report</td><td><a href='${env.BUILD_URL}testReport/'>${env.BUILD_URL}testReport/</a></td><tr>
</table>
"""
2018-05-06 04:05:44 -04:00
emailext(
to: email,
subject: summary,
body: detail,
mimeType: 'text/html'
)
}
2018-05-06 10:59:23 -04:00
// vim: et:ts=4:sw=4:ft=groovy