Jenkinsfile: Fix GitLab commit status forwarding.

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

6
Jenkinsfile vendored
View File

@ -126,6 +126,7 @@ def doUnitTests(name, wsid) {
} }
} }
gitlabBuilds(builds: ["Checkout & Versioning", "Build", "Testing", "Archiving"]) {
// First though let's give this build a proper name // First though let's give this build a proper name
stage("Checkout & Versioning") { stage("Checkout & Versioning") {
gitlabCommitStatus("Checkout & Versioning") { gitlabCommitStatus("Checkout & Versioning") {
@ -175,8 +176,8 @@ stage("Testing") {
} }
// Collect all the binaries and give each configuration its own subfolder // Collect all the binaries and give each configuration its own subfolder
stage("Publishing") { stage("Archiving") {
gitlabCommitStatus("Publishing") { gitlabCommitStatus("Archiving") {
node("windows") { // any node will do node("windows") { // any node will do
ws("IW4x/pub") { ws("IW4x/pub") {
try { try {
@ -195,3 +196,4 @@ stage("Publishing") {
} }
} }
} }
}