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

commit 59e35229d0da3d519ce64fe54eb7367a00f80978
Author: Robert Munteanu <[email protected]>
AuthorDate: Wed Feb 27 11:17:33 2019 +0100

    SLING-7597 - Investigate setting up Windows testing
    
    Ignore failures in Windows stages.
---
 Jenkinsfile | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 8d4f28d..d44a10a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -60,7 +60,11 @@ def generateStages(String os, def mvnVersion, def 
javaVersion) {
 
     if ( os == "windows") {
         return node('Windows') {
-            stages
+            try {
+                stages
+            } catch (ignored) {
+                echo "Ignoring Windows failure for now: ${e.message}"
+            }
         }
     }
 

Reply via email to