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.
|
|
|
|
*/
|
2018-05-01 08:00:48 -04:00
|
|
|
LABEL = 'ubuntu'
|
|
|
|
buildJdk = 'JDK 1.8 (latest)'
|
2018-05-19 13:49:28 -04:00
|
|
|
buildJdk9 = 'JDK 1.9 (latest)'
|
|
|
|
buildJdk10 = 'JDK 10 (latest)'
|
2018-12-13 21:15:52 -05:00
|
|
|
buildJdk11 = 'JDK 11 (latest)'
|
2019-08-29 16:09:26 -04:00
|
|
|
buildMvn = 'Maven 3.5.4'
|
2018-12-30 22:38:51 -05:00
|
|
|
//localRepository = ".repository"
|
|
|
|
localRepository = "../.maven_repositories/${env.EXECUTOR_NUMBER}"
|
2018-12-13 21:14:16 -05:00
|
|
|
mavenOpts = '-Xms1g -Xmx2g -Djava.awt.headless=true'
|
2018-12-30 23:43:51 -05:00
|
|
|
publishers = [artifactsPublisher(disabled: false),
|
|
|
|
junitPublisher(disabled: false, ignoreAttachments: false),
|
|
|
|
pipelineGraphPublisher(disabled: false),mavenLinkerPublisher(disabled: false)]
|
2018-10-25 16:04:55 -04:00
|
|
|
|
2018-05-05 14:47:47 -04:00
|
|
|
INTEGRATION_PIPELINE = "Archiva-IntegrationTests-Gitbox"
|
2018-04-18 00:11:53 -04:00
|
|
|
|
2018-05-01 08:00:48 -04:00
|
|
|
pipeline {
|
2018-05-01 08:08:14 -04:00
|
|
|
agent {
|
|
|
|
label "${LABEL}"
|
|
|
|
}
|
2018-11-01 14:08:44 -04:00
|
|
|
options {
|
|
|
|
disableConcurrentBuilds()
|
2018-12-28 18:26:01 -05:00
|
|
|
buildDiscarder(logRotator(numToKeepStr: '7', artifactNumToKeepStr: '5'))
|
2018-11-01 14:08:44 -04:00
|
|
|
}
|
|
|
|
parameters {
|
|
|
|
booleanParam(name: 'PRECLEANUP', defaultValue: false, description: 'Clears the local maven repository before build.')
|
|
|
|
}
|
2018-10-25 16:04:55 -04:00
|
|
|
|
|
|
|
|
2018-05-01 08:08:14 -04:00
|
|
|
stages {
|
2018-05-01 08:00:48 -04:00
|
|
|
|
2018-11-01 14:08:44 -04:00
|
|
|
stage('PreCleanup') {
|
|
|
|
when {
|
|
|
|
expression {
|
|
|
|
params.PRECLEANUP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
steps {
|
|
|
|
sh "rm -rf ${localRepository}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-05 14:47:47 -04:00
|
|
|
stage('BuildAndDeploy') {
|
2018-10-25 16:04:55 -04:00
|
|
|
environment {
|
2018-11-01 14:08:44 -04:00
|
|
|
ARCHIVA_USER_CONFIG_FILE = '/tmp/archiva-master-jdk-8-${env.JOB_NAME}.xml'
|
2018-10-25 16:04:55 -04:00
|
|
|
}
|
2018-11-01 14:08:44 -04:00
|
|
|
|
2018-05-01 08:00:48 -04:00
|
|
|
steps {
|
|
|
|
timeout(120) {
|
|
|
|
withMaven(maven: buildMvn, jdk: buildJdk,
|
2018-11-01 14:08:44 -04:00
|
|
|
mavenLocalRepo: localRepository,
|
2018-12-13 21:14:16 -05:00
|
|
|
publisherStrategy: 'EXPLICIT',
|
|
|
|
mavenOpts: mavenOpts,
|
2018-12-30 23:43:51 -05:00
|
|
|
options: publishers )
|
2018-05-01 08:00:48 -04:00
|
|
|
{
|
|
|
|
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
|
|
|
|
2018-05-01 08:00:48 -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
|
2018-05-01 08:00:48 -04:00
|
|
|
// -Dmaven.test.failure.ignore=true: Do not stop, if some tests fail
|
|
|
|
// -Pci-build: Profile for CI-Server
|
2019-08-29 16:09:26 -04:00
|
|
|
sh "mvn clean deploy -B -U -e -fae -Dmaven.compiler.fork=true -Pci-build -T3"
|
2018-05-01 08:00:48 -04:00
|
|
|
}
|
|
|
|
}
|
2018-05-01 07:37:38 -04:00
|
|
|
}
|
2018-05-01 08:00:48 -04:00
|
|
|
post {
|
2018-05-02 11:25:00 -04:00
|
|
|
always {
|
2018-10-25 16:04:55 -04:00
|
|
|
sh "rm -f /tmp/archiva-master-jdk-8-${env.JOB_NAME}.xml"
|
2018-05-01 08:00:48 -04:00
|
|
|
}
|
|
|
|
failure {
|
2018-12-30 23:45:35 -05:00
|
|
|
script{
|
|
|
|
asfStandardBuild.notifyBuild("Failure in BuildAndDeploy stage")
|
|
|
|
}
|
2018-05-01 08:00:48 -04:00
|
|
|
}
|
2018-05-01 04:29:17 -04:00
|
|
|
}
|
|
|
|
}
|
2018-05-05 14:57:15 -04:00
|
|
|
|
2018-05-19 13:51:17 -04:00
|
|
|
|
2018-11-01 12:35:09 -04:00
|
|
|
|
|
|
|
stage('Postbuild') {
|
2018-05-19 13:51:17 -04:00
|
|
|
parallel {
|
2018-11-01 12:35:09 -04:00
|
|
|
stage('IntegrationTest') {
|
|
|
|
steps {
|
2018-11-01 14:08:44 -04:00
|
|
|
build(job: "${INTEGRATION_PIPELINE}/archiva/${env.BRANCH_NAME}", propagate: false, quietPeriod: 5, wait: false)
|
2018-11-01 12:35:09 -04:00
|
|
|
}
|
|
|
|
}
|
2018-12-30 23:43:51 -05:00
|
|
|
|
|
|
|
stage('JDK11') {
|
2018-10-25 16:04:55 -04:00
|
|
|
environment {
|
2018-12-30 23:43:51 -05:00
|
|
|
ARCHIVA_USER_CONFIG_FILE = '/tmp/archiva-master-jdk-11-${env.JOB_NAME}.xml'
|
2018-10-25 16:04:55 -04:00
|
|
|
}
|
2018-05-19 13:51:17 -04:00
|
|
|
steps {
|
2018-12-31 03:01:37 -05:00
|
|
|
ws("${env.JOB_NAME}-JDK11") {
|
2018-11-01 14:08:44 -04:00
|
|
|
checkout scm
|
2018-05-19 13:51:17 -04:00
|
|
|
timeout(120) {
|
2018-12-30 23:43:51 -05:00
|
|
|
withMaven(maven: buildMvn, jdk: buildJdk11,
|
|
|
|
mavenLocalRepo: ".repository",
|
2018-12-13 21:14:16 -05:00
|
|
|
publisherStrategy: 'EXPLICIT',
|
|
|
|
mavenOpts: mavenOpts,
|
2018-12-30 23:43:51 -05:00
|
|
|
options: publishers
|
2018-05-19 13:51:17 -04:00
|
|
|
)
|
|
|
|
{
|
2019-08-29 16:09:26 -04:00
|
|
|
sh "mvn clean install -U -B -e -fae -Dmaven.compiler.fork=true -Pci-build -T3"
|
2018-05-19 13:51:17 -04:00
|
|
|
}
|
|
|
|
}
|
2018-05-19 13:49:28 -04:00
|
|
|
}
|
|
|
|
}
|
2018-10-25 16:04:55 -04:00
|
|
|
post {
|
|
|
|
always {
|
2018-12-30 23:43:51 -05:00
|
|
|
sh "rm -f /tmp/archiva-master-jdk-11-${env.JOB_NAME}.xml"
|
2018-10-25 16:04:55 -04:00
|
|
|
}
|
2018-11-01 14:08:44 -04:00
|
|
|
success {
|
2018-12-30 23:43:51 -05:00
|
|
|
cleanWs()
|
2018-11-01 14:08:44 -04:00
|
|
|
}
|
2018-10-25 16:04:55 -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-12-30 23:45:35 -05:00
|
|
|
script {
|
|
|
|
asfStandardBuild.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)) {
|
2018-12-30 23:43:51 -05:00
|
|
|
asfStandardBuild.notifyBuild("Fixed")
|
2018-05-06 10:57:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-01 04:29:17 -04:00
|
|
|
}
|
2017-03-07 05:34:08 -05:00
|
|
|
}
|
|
|
|
|
2018-05-06 10:57:46 -04:00
|
|
|
// vim: et:ts=4:sw=4:ft=groovy
|