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 1bc3843 SLING-7597 - Investigate setting up Windows testing
1bc3843 is described below
commit 1bc38434a1170a3780aaec9f79ff8b502bd15c3c
Author: Robert Munteanu <[email protected]>
AuthorDate: Thu Feb 28 09:50:13 2019 +0100
SLING-7597 - Investigate setting up Windows testing
Use a single node block for all windows stages. Might fix the sources
being out of date on windows stages.
---
Jenkinsfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 2ef7a79..a27609c 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -54,8 +54,8 @@ def generateStages(String os, def mvnVersion, def
javaVersion) {
// SCM checkout unavailable
if ( isWindows ) {
return {
- stages.each { name, body ->
- node("Windows") {
+ node("Windows") {
+ stages.each { name, body ->
stage(name) {
body.call()
}