Compare commits

...

4 Commits

1 changed files with 5 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -216,6 +216,7 @@ pipeline {
script {
jsonConfig.gCube_release.Components.each { group_name, component_list ->
stage("build ${group_name} components") {
buildComponents items: component_list?.collect { "${it.name}" },
"${maven_settings_file}", "${maven_activation_property}", "${maven_local_repo_path}", jobs
echo "Done with ${group_name} components"
@ -293,7 +294,10 @@ def buildComponents(args, maven_settings_file, maven_activation_property, maven_
def gjob = build(job: name, wait: true, propagate: true,
parameters: [[$class: 'StringParameterValue', name: 'gcube_settings', value: "${maven_settings_file} ${maven_activation_property}"],
[$class: 'StringParameterValue', name: 'local_repo', value: "${maven_local_repo_path}"],
[$class: 'LabelParameterValue', name: 'exec_label', label: "CD", nodeEligibility: [$class: 'AllNodeEligibility']]
[$class: 'LabelParameterValue', name: 'exec_label', label: "CD", nodeEligibility: [$class: 'AllNodeEligibility']],
string(name: 'GIT_BRANCH_NAME', value: 'master'),
string(name: 'GIT_BRANCH', value: 'master'),
string(name: 'BRANCH_NAME', value: 'master')
])
sh "echo -e ${name},${gjob.getResult()} >> ${agent_root_folder}/build_jobs.${env.BUILD_NUMBER}.csv"
}