Adding parent as upstream trigger
This commit is contained in:
parent
5a080e52e5
commit
332945d852
|
@ -39,6 +39,11 @@ def defaultPublishers = [artifactsPublisher(disabled: false), junitPublisher(ign
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label "${LABEL}" }
|
agent { label "${LABEL}" }
|
||||||
|
// Build should also start, if parent has been built successfully
|
||||||
|
triggers {
|
||||||
|
upstream(upstreamProjects: 'Archiva-TLP-Gitbox/archiva-parent/master', threshold: hudson.model.Result.SUCCESS)
|
||||||
|
}
|
||||||
|
|
||||||
options {
|
options {
|
||||||
disableConcurrentBuilds()
|
disableConcurrentBuilds()
|
||||||
durabilityHint('PERFORMANCE_OPTIMIZED')
|
durabilityHint('PERFORMANCE_OPTIMIZED')
|
||||||
|
|
Loading…
Reference in New Issue