Echo the results of the maven-parent job.

This commit is contained in:
Manuele Simi 2019-10-02 16:42:16 -04:00
parent e73ad73389
commit 18b787ea51
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -98,11 +98,11 @@ pipeline {
// the maven-parent needs to be built (once) at each execution
stage('build maven-parent') {
steps {
build(job: 'maven-parent',
echo build(job: 'maven-parent', wait: true,
parameters: [[$class: 'StringParameterValue', name: 'gcube_settings', value: "${maven_settings_file}"],
[$class: 'StringParameterValue', name: 'local_repo', value: "${maven_local_repo_path}"],
[$class: 'LabelParameterValue', name: 'exec_label', label: "pipeline-agent", nodeEligibility: [$class: 'AllNodeEligibility']]
])
]).result
echo "Done with maven-parent"
}
}