Compare commits
4 Commits
master
...
feature/23
Author | SHA1 | Date |
---|---|---|
Roberto Cirillo | ecf712f506 | |
Roberto Cirillo | 2cb7709aed | |
Roberto Cirillo | 4fa1f99429 | |
Roberto Cirillo | 57553528d9 |
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue