archiva/Jenkinsfile

187 lines
8.1 KiB
Plaintext
Raw Normal View History

2018-05-04 13:30:15 -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.
*/
/**
* 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-05-19 13:49:28 -04:00
buildJdk9 = 'JDK 1.9 (latest)'
buildJdk10 = 'JDK 10 (latest)'
buildMvn = 'Maven 3.5.2'
deploySettings = 'DefaultMavenSettingsProvider.1331204114925'
INTEGRATION_PIPELINE = "Archiva-IntegrationTests-Gitbox"
2018-04-18 00:11:53 -04:00
pipeline {
2018-05-01 08:08:14 -04:00
agent {
label "${LABEL}"
}
2018-05-01 04:29:17 -04:00
2018-05-01 08:08:14 -04:00
stages {
stage('BuildAndDeploy') {
steps {
timeout(120) {
withMaven(maven: buildMvn, jdk: buildJdk,
2018-10-20 11:53:02 -04:00
mavenLocalRepo: ".repository",
2018-05-02 17:18:18 -04:00
options: [concordionPublisher(disabled: true), dependenciesFingerprintPublisher(disabled: true),
findbugsPublisher(disabled: true), artifactsPublisher(disabled: true),
invokerPublisher(disabled: true), jgivenPublisher(disabled: true),
junitPublisher(disabled: true, ignoreAttachments: false),
openTasksPublisher(disabled: true), pipelineGraphPublisher(disabled: true)]
)
{
sh "chmod 755 ./src/ci/scripts/prepareWorkspace.sh"
sh "./src/ci/scripts/prepareWorkspace.sh"
// Needs a lot of time to reload the repository files, try without cleanup
// Not sure, but maybe
// sh "rm -rf .repository"
2018-05-01 04:29:17 -04:00
// Run test phase / ignore test failures
// -B: Batch mode
// -U: Force snapshot update
// -e: Produce execution error messages
// -fae: Fail at the end
2018-05-06 10:57:46 -04:00
// -Dmaven.compiler.fork=true: Do compile in a separate forked process
// -Dmaven.test.failure.ignore=true: Do not stop, if some tests fail
// -Pci-build: Profile for CI-Server
2018-05-06 10:57:46 -04:00
sh "mvn clean deploy -B -U -e -fae -T2 -Dmaven.compiler.fork=true -Pci-build"
}
}
}
post {
always {
2018-05-02 17:10:06 -04:00
junit testResults: '**/target/surefire-reports/TEST-*.xml'
}
success {
archiveArtifacts '**/target/*.war,**/target/*-bin.zip'
}
failure {
2018-05-06 10:57:46 -04:00
notifyBuild("Failure in BuildAndDeploy stage")
}
2018-05-01 04:29:17 -04:00
}
}
2018-05-05 14:57:15 -04:00
stage('IntegrationTest') {
steps {
2018-05-06 10:57:46 -04:00
build(job: "${INTEGRATION_PIPELINE}/archiva/${env.BRANCH_NAME}", propagate: false, quietPeriod: 10)
2018-05-05 14:57:15 -04:00
}
}
2018-05-05 14:57:15 -04:00
2018-05-19 13:51:17 -04:00
stage('JDKs') {
parallel {
stage('JDK9') {
steps {
ws("${env.JOB_NAME}-JDK9") {
checkout scm
timeout(120) {
withMaven(maven: buildMvn, jdk: buildJdk9,
mavenSettingsConfig: deploySettings,
mavenLocalRepo: ".repository",
options: [concordionPublisher(disabled: true), dependenciesFingerprintPublisher(disabled: true),
findbugsPublisher(disabled: true), artifactsPublisher(disabled: true),
invokerPublisher(disabled: true), jgivenPublisher(disabled: true),
junitPublisher(disabled: true, ignoreAttachments: false),
openTasksPublisher(disabled: true), pipelineGraphPublisher(disabled: true)]
)
{
sh "mvn clean install -B -U -e -fae -T2 -Dmaven.compiler.fork=true -Pci-build"
2018-05-19 13:51:17 -04:00
}
}
2018-05-19 13:49:28 -04:00
}
}
}
2018-05-19 13:51:17 -04:00
stage('JDK10') {
steps {
ws("${env.JOB_NAME}-JDK10") {
checkout scm
timeout(120) {
withMaven(maven: buildMvn, jdk: buildJdk10,
mavenSettingsConfig: deploySettings,
mavenLocalRepo: ".repository",
options: [concordionPublisher(disabled: true), dependenciesFingerprintPublisher(disabled: true),
findbugsPublisher(disabled: true), artifactsPublisher(disabled: true),
invokerPublisher(disabled: true), jgivenPublisher(disabled: true),
junitPublisher(disabled: true, ignoreAttachments: false),
openTasksPublisher(disabled: true), pipelineGraphPublisher(disabled: true)]
)
{
sh "mvn clean install -B -U -e -fae -T2 -Dmaven.compiler.fork=true -Pci-build"
2018-05-19 13:51:17 -04:00
}
}
2018-05-19 13:49:28 -04:00
}
}
}
}
}
2018-05-19 13:51:17 -04:00
2018-05-19 13:49:28 -04:00
}
2018-05-01 08:09:36 -04:00
post {
unstable {
2018-05-06 10:57:46 -04:00
notifyBuild("Unstable Build")
2018-05-01 04:29:17 -04:00
}
2018-05-06 10:57:46 -04:00
success {
script {
def previousResult = currentBuild.previousBuild?.result
if (previousResult && !currentBuild.resultIsWorseOrEqualTo(previousResult)) {
notifyBuild("Fixed")
}
}
}
2018-10-20 11:32:46 -04:00
always {
cleanWs()
}
2018-05-01 04:29:17 -04:00
}
}
// Send a notification about the build status
2018-05-01 04:29:17 -04:00
def notifyBuild(String buildStatus) {
// default the value
buildStatus = buildStatus ?: "UNKNOWN"
2018-05-01 04:29:17 -04:00
def email = "notifications@archiva.apache.org"
2018-05-05 16:48:53 -04:00
def summary = "${env.JOB_NAME}#${env.BUILD_NUMBER} - ${buildStatus} - ${currentBuild?.currentResult}"
2018-05-01 04:29:17 -04:00
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-01 04:29:17 -04:00
emailext(
to: email,
subject: summary,
body: detail,
mimeType: 'text/html'
)
}
2018-05-06 10:57:46 -04:00
// vim: et:ts=4:sw=4:ft=groovy