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 21f0cb2 SLING-7597 - Investigate setting up Windows testing
21f0cb2 is described below
commit 21f0cb2cb05322ee2b93511129e67efd97bd9f55
Author: Robert Munteanu <[email protected]>
AuthorDate: Wed Feb 27 23:40:02 2019 +0100
SLING-7597 - Investigate setting up Windows testing
Fix Xvfb wrapper when using parallel builds.
---
Jenkinsfile | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index f46d56a..2ef7a79 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -38,7 +38,8 @@ def generateStages(String os, def mvnVersion, def
javaVersion) {
}, "[$prefix] Build Eclipse plug-ins": {
withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
timeout(20) {
- wrap([$class: 'Xvfb']) {
+ // workaround for
https://issues.jenkins-ci.org/browse/JENKINS-39415
+ wrap([$class: 'Xvfb', autoDisplayName: true]) {
runCmd 'mvn -f eclipse clean verify'
}
// workaround for
https://issues.jenkins-ci.org/browse/JENKINS-55889