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 7e71747  SLING-7597 - Investigate setting up Windows testing
7e71747 is described below

commit 7e7174791f84d9748cbbcfb70774de734c447fb9
Author: Robert Munteanu <[email protected]>
AuthorDate: Wed Feb 27 13:41:48 2019 +0100

    SLING-7597 - Investigate setting up Windows testing
    
    Do not use the spread-dot operator, it's not supported in the Jenkins
    pipeline.
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 4f084bb..eeef17b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -64,13 +64,13 @@ def generateStages(String os, def mvnVersion, def 
javaVersion) {
     if ( os == "windows ") {
         return {
             node("Windows") {
-                stages*.call()
+                stages.each { it.call() }
             }
         }
     }
 
     return {
-        stages*.call()
+        stages.each { it.call() }
     }
 }
 

Reply via email to