Compare commits
No commits in common. "master" and "feature/22849" have entirely different histories.
master
...
feature/22
|
@ -1,3 +0,0 @@
|
||||||
.project
|
|
||||||
.idea
|
|
||||||
|
|
|
@ -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,10 +124,6 @@ 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
|
||||||
|
@ -237,7 +233,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: false,
|
def pjob = build(job: 'Pipeline-gCubeReleaseNotes', wait: true, propagate: true,
|
||||||
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}"],
|
||||||
|
@ -246,19 +242,6 @@ 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}"]]
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue