2019-08-29 22:03:45 +02:00
|
|
|
import groovy.json.JsonSlurper
|
2019-08-29 23:40:43 +02:00
|
|
|
import groovy.io.FileType
|
|
|
|
|
2019-08-30 12:46:09 +02:00
|
|
|
//locate where this jenkinsfile is
|
2019-08-31 04:47:10 +02:00
|
|
|
String releaseURL = "https://code-repo.d4science.org/gCubeCI/gCubeRelease/raw/branch/feature/17273/releases/gcube-${params.gCube_release_number}.json"
|
2019-08-29 22:55:38 +02:00
|
|
|
//check and parse the release file
|
2019-08-31 04:37:25 +02:00
|
|
|
println "Querying ${releaseURL}"
|
|
|
|
def text = releaseURL.toURL().getText()
|
2019-08-31 04:43:32 +02:00
|
|
|
def gcubeJSON = new JsonSlurper().parseText(text)
|
2019-08-29 22:55:38 +02:00
|
|
|
|
2019-08-29 22:03:45 +02:00
|
|
|
//check that the release number parameter is the one expected
|
|
|
|
assert gcubeJSON["gCube.version"] == params.gCube_release_number : "Release versions do not match!"
|
|
|
|
|
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-30 04:05:18 +02:00
|
|
|
def maven_jdk = 'OpenJDK 8'
|
2019-05-30 05:24:09 +02:00
|
|
|
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 = ''
|
2019-05-30 05:24:09 +02:00
|
|
|
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
|
|
|
}
|
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 = ''
|
2019-05-30 05:24:09 +02:00
|
|
|
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-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 = ''
|
2019-05-30 05:24:09 +02:00
|
|
|
maven_local_repo_path = "${agent_root_folder}/local-releases"
|
2019-05-30 22:11:17 +02:00
|
|
|
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."
|
|
|
|
}
|
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-31 04:20:17 +02:00
|
|
|
//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}"
|
2019-06-11 21:32:57 +02:00
|
|
|
echo "Release number: ${params.gCube_release_number}"
|
2019-05-29 04:54:34 +02:00
|
|
|
|
2019-08-29 22:55:38 +02:00
|
|
|
def components = gcubeJSON['Components']
|
2019-08-29 22:03:45 +02:00
|
|
|
|
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-08-31 22:04:31 +02:00
|
|
|
agent any
|
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-30 04:25:29 +02:00
|
|
|
MAVEN_LOCAL_REPO = "${maven_local_repo_path}"
|
2019-06-11 21:32:57 +02:00
|
|
|
GCUBE_RELEASE_NUMBER = "${params.gCube_release_number}"
|
|
|
|
|
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-06-11 21:32:57 +02:00
|
|
|
choice(name: 'Type',
|
2019-08-14 06:00:57 +02:00
|
|
|
choices: ['SNAPSHOT-DRY-RUN', 'SNAPSHOT', 'RELEASE-DRY-RUN', 'RELEASE-STAGING', 'RELEASE'],
|
2019-06-11 21:32:57 +02:00
|
|
|
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.')
|
2019-05-28 16:40:30 +02:00
|
|
|
}
|
2019-05-30 05:24:09 +02:00
|
|
|
|
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') {
|
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
|
|
|
}
|
|
|
|
}
|
2019-08-29 21:12:50 +02:00
|
|
|
stage('Build Components') {
|
|
|
|
stages {
|
|
|
|
stage('Build SmartGears components') {
|
|
|
|
steps {
|
|
|
|
script {
|
2019-09-01 05:10:05 +02:00
|
|
|
for(int job=0; i < components['SmartGears'].size(); job++) {
|
|
|
|
build "${components['SmartGears'][$job]}"
|
2019-09-01 05:51:46 +02:00
|
|
|
|
2019-09-01 05:10:05 +02:00
|
|
|
}
|
2019-08-29 21:12:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-01 05:10:05 +02:00
|
|
|
stage('Build Enabling components') {
|
2019-08-29 21:12:50 +02:00
|
|
|
steps {
|
|
|
|
script {
|
2019-09-01 05:10:05 +02:00
|
|
|
for(int job=0; i < components['Enabling'].size(); job++) {
|
|
|
|
build "${components['Enabling'][$job]}"
|
2019-09-01 05:51:46 +02:00
|
|
|
|
2019-09-01 05:10:05 +02:00
|
|
|
}
|
2019-08-29 21:12:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-01 05:10:05 +02:00
|
|
|
stage('Build Data components') {
|
2019-08-29 21:12:50 +02:00
|
|
|
steps {
|
|
|
|
script {
|
2019-09-01 05:10:05 +02:00
|
|
|
for(int job=0; i < components['Data'].size(); job++) {
|
|
|
|
build "${components['Data'][$job]}"
|
2019-09-01 05:51:46 +02:00
|
|
|
|
2019-09-01 05:10:05 +02:00
|
|
|
}
|
2019-08-29 21:12:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-28 16:40:30 +02:00
|
|
|
}
|
2019-05-28 15:00:59 +02:00
|
|
|
}
|
|
|
|
}
|
2019-05-28 16:40:30 +02:00
|
|
|
|
2019-05-28 15:00:59 +02:00
|
|
|
}
|