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 94bfbce SLING-7597 - Investigate setting up Windows testing
94bfbce is described below
commit 94bfbcee112fe06592c742eeb7900fc437435a81
Author: Robert Munteanu <[email protected]>
AuthorDate: Wed Feb 27 14:58:57 2019 +0100
SLING-7597 - Investigate setting up Windows testing
Fix windows stage invocation
---
Jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index b8cb27e..fc195c5 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -64,9 +64,9 @@ def generateStages(String os, def mvnVersion, def
javaVersion) {
// SCM checkout unavailable
if ( isWindows ) {
return {
- stages.each {
+ stages.each { s->
node("Windows") {
- it.call()
+ s.call()
}
}
}