From 283a747352a38b7d2dbbbfaf188bbe66bf9e31ad Mon Sep 17 00:00:00 2001 From: /dev/urandom Date: Tue, 13 Sep 2016 03:04:39 +0200 Subject: [PATCH] Jenkinsfile: ()()()()()()()()()()()()()()()() --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8da40224..35f6aec3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -101,7 +101,7 @@ def doUnitTests(name) { } // First though let's give this build a proper name -stage "Checkout & Versioning" { +stage("Checkout & Versioning") { node("windows") { checkout scm @@ -112,7 +112,7 @@ stage "Checkout & Versioning" { } // For each available configuration generate a normal build and a unit test build. -stage "Build" { +stage("Build") { def executions = [:] for (int i = 0; i < configurations.size(); i++) { @@ -128,7 +128,7 @@ stage "Build" { } // Run unit tests on each configuration. -stage "Testing" { +stage("Testing") { executions = [:] for (int i = 0; i < configurations.size(); i++) { @@ -141,7 +141,7 @@ stage "Testing" { } // Collect all the binaries and give each configuration its own subfolder -stage "Publishing" { +stage("Publishing") { node("windows") { // any node will do for (int i = 0; i < configurations.size(); i++) {