Merge pull request 'feature/23949' (#3) from feature/23949 into master

Reviewed-on: #3
This commit is contained in:
Roberto Cirillo 2023-05-15 09:57:39 +02:00
commit 07a6c87929
2 changed files with 22 additions and 2 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.project
.idea

21
Jenkinsfile vendored
View File

@ -1,4 +1,4 @@
#!groovy #!groovy
import org.yaml.snakeyaml.Yaml import org.yaml.snakeyaml.Yaml
// set the build options according to the Type of build // set the build options according to the Type of build
@ -124,6 +124,10 @@ pipeline {
string(name: 'resume_from', string(name: 'resume_from',
defaultValue: '', defaultValue: '',
description: 'Resume from a previous build identified by the build number.') description: 'Resume from a previous build identified by the build number.')
booleanParam(name: 'ContinuousDeployment',
defaultValue: false,
description: 'If true, the gCubeDeployer pipeline will be triggered')
} }
//see https://jenkins.io/doc/book/pipeline/syntax/#stages //see https://jenkins.io/doc/book/pipeline/syntax/#stages
@ -233,7 +237,7 @@ pipeline {
''' '''
def report_text = sh(script: 'cat ${AGENT_ROOT_FOLDER}/build_commits.csv', returnStdout: true)?.trim() def report_text = sh(script: 'cat ${AGENT_ROOT_FOLDER}/build_commits.csv', returnStdout: true)?.trim()
def pjob = build(job: 'Pipeline-gCubeReleaseNotes', wait: true, propagate: true, def pjob = build(job: 'Pipeline-gCubeReleaseNotes', wait: true, propagate: false,
parameters: [[$class: 'StringParameterValue', name: 'report', value: "${report_text}"], parameters: [[$class: 'StringParameterValue', name: 'report', value: "${report_text}"],
[$class: 'StringParameterValue', name: 'report_number', value: "${env.BUILD_NUMBER}"], [$class: 'StringParameterValue', name: 'report_number', value: "${env.BUILD_NUMBER}"],
[$class: 'StringParameterValue', name: 'gCube_release_version', value: "${params.gCube_release_version}"], [$class: 'StringParameterValue', name: 'gCube_release_version', value: "${params.gCube_release_version}"],
@ -242,6 +246,19 @@ pipeline {
} }
} }
} }
stage('Deploy components') {
when {
expression { params.ContinuousDeployment.toBoolean() }
}
steps {
script {
def pjob = build(job: 'gCubeDeployer', wait: true, propagate: true,
parameters: [[$class: 'StringParameterValue', name: 'gCube_release_version', value: "${params.gCube_release_version}"],
[$class: 'StringParameterValue', name: 'TRIGGER_JOB', value: "${JOB_NAME}"]]
)
}
}
}
} }