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
|
|
|
|
def (options,maven_local_repo_path,maven_settings_file) = ['','','']
|
|
|
|
|
2019-05-28 16:40:30 +02:00
|
|
|
if (params.Type == 'SNAPSHOT') {
|
2019-05-28 21:27:19 +02:00
|
|
|
echo "Will configure Maven for SNAPSHOT artifacts"
|
|
|
|
options = ''
|
|
|
|
maven_local_repo_path = ''
|
|
|
|
maven_settings_file = ''
|
|
|
|
}
|
2019-05-28 16:40:30 +02:00
|
|
|
if (params.Type == 'RELEASE') {
|
2019-05-28 21:27:19 +02:00
|
|
|
echo "Will configure Maven for RELEASE artifacts"
|
|
|
|
options = ''
|
|
|
|
maven_local_repo_path = ''
|
|
|
|
maven_settings_file = ''
|
2019-05-28 15:38:19 +02:00
|
|
|
}
|
2019-05-28 16:40:30 +02:00
|
|
|
|
|
|
|
pipeline {
|
|
|
|
agent any
|
2019-05-28 21:27:19 +02:00
|
|
|
|
|
|
|
// environment variables available to the Pipeline
|
|
|
|
environment {
|
|
|
|
JOB_OPTIONS = "${options}"
|
|
|
|
}
|
|
|
|
|
2019-05-28 16:40:30 +02:00
|
|
|
parameters {
|
|
|
|
choice(choices: ['SNAPSHOT', 'RELEASE'],
|
|
|
|
description: 'The type of artifacts the build is expected to generate',
|
|
|
|
name: 'Type')
|
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('build core components') {
|
|
|
|
steps {
|
|
|
|
withMaven(jdk: 'OpenJDK 8') {
|
2019-05-28 21:27:19 +02:00
|
|
|
build 'maven-parent/master'
|
|
|
|
build 'gcube-bom/master'
|
|
|
|
build 'authorization-common-library/master'
|
|
|
|
build 'gxRest/master'
|
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
|
|
|
}
|
|
|
|
|