gCubeBuilder/Jenkinsfile

132 lines
4.5 KiB
Plaintext
Raw Normal View History

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) = ['','','']
def maven_jdk = 'OpenJDK 8'
def agent_root_folder = '/var/lib/jenkins'
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 = "${agent_root_folder}/local-snapshots"
2019-05-31 04:24:52 +02:00
maven_settings_file = "${agent_root_folder}/.m2/jenkins-snapshots-dry-run-settings.xml"
2019-05-29 04:04:34 +02:00
}
if (params.Type == 'SNAPSHOT') {
2019-05-29 04:54:34 +02:00
echo "Configure Maven for SNAPSHOT artifacts"
options = ''
maven_local_repo_path = "${agent_root_folder}/local-snapshots"
2019-05-31 04:24:52 +02:00
maven_settings_file = "${agent_root_folder}/.m2/jenkins-snapshots-settings.xml"
}
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 = "${agent_root_folder}/local-releases"
maven_settings_file = "${agent_root_folder}/.m2/jenkins-releases-dry-run-settings.xml"
2019-05-29 04:04:34 +02:00
}
2019-08-14 06:00:57 +02:00
if (params.Type == 'RELEASE-STAGING') {
echo "Configure Maven for RELEASE-STAGING artifacts"
options = ''
maven_local_repo_path = "${agent_root_folder}/local-staging"
maven_settings_file = "${agent_root_folder}/.m2/jenkins-staging-settings.xml"
echo "This will fail. RELEASES are currently disabled until further testing."
}
if (params.Type == 'RELEASE') {
2019-05-29 04:54:34 +02:00
echo "Configure Maven for RELEASE artifacts"
options = ''
//maven_local_repo_path = "${agent_root_folder}/local-releases"
//maven_settings_file = "${agent_root_folder}/.m2/jenkins-releases-settings.xml"
echo "This will fail. RELEASES are currently disabled until further testing."
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}"
echo "Release number: ${params.gCube_release_number}"
2019-05-29 04:54:34 +02:00
def apps = ['SmartGears':['maven-parent', 'gcube-bom', 'gxRest'],
'Enabling':['job4', 'job5', 'job6'],
'Data':['job7', 'job8', 'job9']]
def dynamicStages = [:]
//let's build the stages closures
apps.each { entry -> echo "App name: $entry.key = Jobs: $entry.value" }
apps.each { entry ->
def app = entry.key
dynamicStages["stage-${app}"] = ["${app}":{
node {
stage("Build ${app}") {
for (int j = 0; j < entry.value.size(); j++) {
build "${entry.value[j]}"
}
}
}
}]
}
echo "Configured dynamic stages: ${dynamicStages.inspect()}"
pipeline {
// see https://jenkins.io/doc/book/pipeline/syntax/#agent
2019-05-30 04:31:08 +02:00
agent {
label 'pipeline-agent'
}
// see https://jenkins.io/doc/book/pipeline/syntax/#environment
environment {
JOB_OPTIONS = "${options}"
MAVEN_LOCAL_REPO = "${maven_local_repo_path}"
GCUBE_RELEASE_NUMBER = "${params.gCube_release_number}"
}
// see https://jenkins.io/doc/book/pipeline/syntax/#parameters
parameters {
choice(name: 'Type',
2019-08-14 06:00:57 +02:00
choices: ['SNAPSHOT-DRY-RUN', 'SNAPSHOT', 'RELEASE-DRY-RUN', 'RELEASE-STAGING', 'RELEASE'],
description: 'The type of artifacts the build is expected to generate')
string(name: 'gCube_release_number',
defaultValue: 'invalid',
description: 'The number of the gCube release to build. Ignored by the SNAPSHOT builds. Sample values: 4.14, 4.15, etc.')
}
//see https://jenkins.io/doc/book/pipeline/syntax/#stages
stages {
2019-05-29 04:54:34 +02:00
stage('clean up before starting') {
2019-05-30 04:31:08 +02:00
steps {
2019-05-30 05:25:00 +02:00
sh '''
echo "Create a fresh local repository"
rm -rf $MAVEN_LOCAL_REPO
mkdir -p $MAVEN_LOCAL_REPO
echo "Done with local repository"
'''
2019-05-29 04:54:34 +02:00
}
}
stage('Build Components') {
stages {
stage('Build SmartGears components') {
steps {
script {
parallel dynamicStages['stage-SmartGears']
}
}
}
stage('Build enabling components') {
steps {
script {
parallel dynamicStages['stage-Enabling']
}
}
}
stage('Build data components') {
steps {
script {
parallel dynamicStages['stage-Data']
}
}
}
}
2019-05-28 15:00:59 +02:00
}
}
2019-05-28 15:00:59 +02:00
}