forked from fabric8io/configmapcontroller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
29 lines (26 loc) · 643 Bytes
/
Copy pathJenkinsfile
File metadata and controls
29 lines (26 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/groovy
@Library('github.com/fabric8io/fabric8-pipeline-library@master')
def dummy
goNode{
dockerNode{
def v = goRelease{
githubOrganisation = 'fabric8io'
dockerOrganisation = 'fabric8'
project = 'configmapcontroller'
}
stage ('Update downstream dependencies') {
updateDownstreamDependencies(v)
}
}
}
def updateDownstreamDependencies(v) {
pushPomPropertyChangePR {
propertyName = 'configmapcontroller.version'
projects = [
'fabric8io/fabric8-devops',
'fabric8io/fabric8-platform',
'funktionio/funktion-platform'
]
version = v
}
}