Jenkinsfile: Add missing job property specifying GitLab connection to report build status to.

This commit is contained in:
/dev/urandom 2016-09-14 22:43:29 +02:00
parent 9fc98ad5b0
commit 078873436a
No known key found for this signature in database
GPG Key ID: 41322B973E0F295E

5
Jenkinsfile vendored
View File

@ -126,6 +126,11 @@ def doUnitTests(name, wsid) {
}
}
// Job properties
properties: [
[$class: "GitLabConnectionProperty", gitLabConnection: "sr0"]
]
gitlabBuilds(builds: ["Checkout & Versioning", "Build", "Testing", "Archiving"]) {
// First though let's give this build a proper name
stage("Checkout & Versioning") {