This is an automated email from the ASF dual-hosted git repository.
rombert pushed a commit to branch feature/SLING-7597
in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git
The following commit(s) were added to refs/heads/feature/SLING-7597 by this
push:
new dd1fc54 SLING-7597 - Investigate setting up Windows testing
dd1fc54 is described below
commit dd1fc54285ff348047db48c6137417478cfff811
Author: Robert Munteanu <[email protected]>
AuthorDate: Wed Feb 27 13:57:53 2019 +0100
SLING-7597 - Investigate setting up Windows testing
Wrap invocations in node.
---
Jenkinsfile | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 8192cc2..b8cb27e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -64,8 +64,10 @@ def generateStages(String os, def mvnVersion, def
javaVersion) {
// SCM checkout unavailable
if ( isWindows ) {
return {
- node("Windows") {
- stages.each { it.call() }
+ stages.each {
+ node("Windows") {
+ it.call()
+ }
}
}
}