2019-05-28 21:27:19 +02:00
|
|
|
|
2019-05-28 21:32:59 +02:00
|
|
|
// set the build options according to the Type of build
|
2019-05-28 22:09:59 +02:00
|
|
|
def (options,maven_local_repo_path,maven_settings_file) = ['','','']
|
2019-05-28 21:32:59 +02:00
|
|
|
|
2019-05-29 04:04:34 +02:00
|
|
|
if (params.Type == 'SNAPSHOT-DRY-RUN') {
|
2019-05-29 04:54:34 +02:00
|
|
|
echo "Configure Maven for SNAPSHOT-DRY-RUN artifacts"
|
2019-05-29 04:04:34 +02:00
|
|
|
options = ''
|
|
|
|
maven_local_repo_path = '~/local-snapshots'
|
|
|
|
maven_settings_file = '~/.m2/jenkins-shapshots-dry-run-settings.xml'
|
|
|
|
}
|
2019-05-28 16:40:30 +02:00
|
|
|
if (params.Type == 'SNAPSHOT') {
|
2019-05-29 04:54:34 +02:00
|
|
|
echo "Configure Maven for SNAPSHOT artifacts"
|
2019-05-28 22:09:59 +02:00
|
|
|
options = ''
|
|
|
|
maven_local_repo_path = '~/local-snapshots'
|
2019-05-29 04:04:34 +02:00
|
|
|
// use the default settings
|
2019-05-28 22:09:59 +02:00
|
|
|
maven_settings_file = '~/.m2/settings.xml'
|
2019-05-28 21:27:19 +02:00
|
|
|
}
|
2019-05-29 04:04:34 +02:00
|
|
|
if (params.Type == 'RELEASE-DRY-RUN') {
|
2019-05-29 04:54:34 +02:00
|
|
|
echo "Configure Maven for RELEASE-DRY-RUN artifacts"
|
2019-05-29 04:04:34 +02:00
|
|
|
options = ''
|
|
|
|
maven_local_repo_path = '~/local-releases'
|
|
|
|
maven_settings_file = '~/.m2/jenkins-releases-dry-run-settings.xml'
|
|
|
|
}
|
2019-05-28 16:40:30 +02:00
|
|
|
if (params.Type == 'RELEASE') {
|
2019-05-29 04:54:34 +02:00
|
|
|
echo "Configure Maven for RELEASE artifacts"
|
2019-05-28 21:27:19 +02:00
|
|
|
options = ''
|
2019-05-28 22:09:59 +02:00
|
|
|
maven_local_repo_path = '~/local-releases'
|
2019-05-29 04:04:34 +02:00
|
|
|
maven_settings_file = '~/.m2/jenkins-releases-settings.xml'
|
2019-05-28 15:38:19 +02:00
|
|
|
}
|
2019-05-29 04:54:34 +02:00
|
|
|
echo "Use settings file at ${maven_settings_file}"
|
|
|
|
echo "Use local repo at ${maven_local_repo_path}"
|
|
|
|
|
2019-05-28 16:40:30 +02:00
|
|
|
pipeline {
|
2019-05-30 02:46:15 +02:00
|
|
|
// see https://jenkins.io/doc/book/pipeline/syntax/#agent
|
2019-05-28 16:40:30 +02:00
|
|
|
agent any
|
2019-05-28 21:27:19 +02:00
|
|
|
|
2019-05-30 02:46:15 +02:00
|
|
|
// see https://jenkins.io/doc/book/pipeline/syntax/#environment
|
2019-05-28 21:27:19 +02:00
|
|
|
environment {
|
2019-05-28 22:09:59 +02:00
|
|
|
JOB_OPTIONS = "${options}"
|
2019-05-28 21:27:19 +02:00
|
|
|
}
|
|
|
|
|
2019-05-30 02:46:15 +02:00
|
|
|
// see https://jenkins.io/doc/book/pipeline/syntax/#parameters
|
2019-05-28 16:40:30 +02:00
|
|
|
parameters {
|
2019-05-29 04:04:34 +02:00
|
|
|
choice(choices: ['SNAPSHOT-DRY-RUN', 'SNAPSHOT', 'RELEASE-DRY-RUN', 'RELEASE'],
|
2019-05-28 16:40:30 +02:00
|
|
|
description: 'The type of artifacts the build is expected to generate',
|
|
|
|
name: 'Type')
|
|
|
|
}
|
|
|
|
|
2019-05-30 02:46:15 +02:00
|
|
|
//see https://jenkins.io/doc/book/pipeline/syntax/#stages
|
2019-05-28 16:40:30 +02:00
|
|
|
stages {
|
2019-05-29 04:54:34 +02:00
|
|
|
stage('clean up before starting') {
|
|
|
|
script {
|
|
|
|
echo "Create a fresh local repository"
|
|
|
|
rm -rf "${maven_local_repo_path}"
|
|
|
|
mkdir -p "${maven_local_repo_path}"
|
|
|
|
echo "Done with local repository"
|
|
|
|
}
|
|
|
|
}
|
2019-05-28 16:40:30 +02:00
|
|
|
stage('build core components') {
|
|
|
|
steps {
|
2019-05-28 22:15:20 +02:00
|
|
|
withMaven(jdk: 'OpenJDK 8', mavenLocalRepo: "${maven_local_repo_path}", mavenSettingsFilePath: "${maven_settings_file}") {
|
2019-05-28 21:43:53 +02:00
|
|
|
build 'maven-parent'
|
|
|
|
build 'gcube-bom'
|
|
|
|
build 'authorization-common-library'
|
|
|
|
build 'gxRest'
|
2019-05-28 16:40:30 +02:00
|
|
|
}
|
2019-05-28 17:01:30 +02:00
|
|
|
script {
|
|
|
|
echo "Done with core components"
|
2019-05-28 16:40:30 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-28 15:00:59 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-28 16:43:07 +02:00
|
|
|
|
|
|
|
// post-build actions
|
|
|
|
post {
|
2019-05-28 16:59:50 +02:00
|
|
|
always {
|
|
|
|
echo 'This will always run'
|
|
|
|
}
|
|
|
|
success {
|
|
|
|
echo 'This will run only if successful'
|
|
|
|
}
|
|
|
|
failure {
|
|
|
|
echo 'This will run only if failed'
|
|
|
|
}
|
|
|
|
unstable {
|
|
|
|
echo 'This will run only if the run was marked as unstable'
|
|
|
|
}
|
|
|
|
changed {
|
|
|
|
echo 'This will run only if the state of the Pipeline has changed'
|
|
|
|
echo 'For example, if the Pipeline was previously failing but is now successful'
|
|
|
|
}
|
|
|
|
}
|
2019-05-28 16:40:30 +02:00
|
|
|
|
2019-05-28 15:00:59 +02:00
|
|
|
}
|