Add build latest docker tag in postmerge job for OMEC repos
Change-Id: Ie541baa6cb553845dd82be20874a84c6009944a1
diff --git a/jjb/pipeline/omec-postmerge.groovy b/jjb/pipeline/omec-postmerge.groovy
index 5f23be4..9291f16 100644
--- a/jjb/pipeline/omec-postmerge.groovy
+++ b/jjb/pipeline/omec-postmerge.groovy
@@ -35,13 +35,17 @@
steps {
script {
abbreviated_commit_hash = commitHash.substring(0, 7)
+ tags_to_build = [ "${branchName}-latest",
+ "${branchName}-${abbreviated_commit_hash}"]
+ tags_to_build.each { tag ->
+ build job: "docker-publish-github_$repoName", parameters: [
+ string(name: 'gitUrl', value: "${repoUrl}"),
+ string(name: 'gitRef', value: "${branchName}"),
+ string(name: 'branchName', value: "${tag}"),
+ string(name: 'projectName', value: "${repoName}"),
+ ]
+ }
}
- build job: "docker-publish-github_$repoName", parameters: [
- string(name: 'gitUrl', value: "${repoUrl}"),
- string(name: 'gitRef', value: "${branchName}"),
- string(name: 'branchName', value: "${branchName}-${abbreviated_commit_hash}"),
- string(name: 'projectName', value: "${repoName}"),
- ]
}
}