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 4163535 SLING-7597 - Investigate setting up Windows testing
4163535 is described below
commit 416353516939c346cfab449047614fd46c0a31c0
Author: Robert Munteanu <[email protected]>
AuthorDate: Tue Feb 26 23:33:05 2019 +0100
SLING-7597 - Investigate setting up Windows testing
Fix syntax (again).
---
Jenkinsfile | 52 ++++++++++++++++++++++++++--------------------------
1 file changed, 26 insertions(+), 26 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 9ae2c6b..3047ae1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -44,42 +44,42 @@ node('ubuntu') {
}
}
}
- });
- }, 'windows': {
- node('Windows'): {
- stage('[win] Build shared code') {
- withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
- timeout(10) {
- bat "mvn -f shared/modules clean install"
+ }, 'windows': {
+ node('Windows'): {
+ stage('[win] Build shared code') {
+ withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
+ timeout(10) {
+ bat "mvn -f shared/modules clean install"
+ }
}
}
- }
- stage('[win] Build CLI bundles') {
- withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
- timeout(10) {
- bat "mvn -f cli clean install"
+ stage('[win] Build CLI bundles') {
+ withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
+ timeout(10) {
+ bat "mvn -f cli clean install"
+ }
}
}
- }
- stage ('[win] Build shared code P2 repository') {
- withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
- timeout(10) {
- bat 'mvn -f shared/p2 clean package'
+ stage ('[win] Build shared code P2 repository') {
+ withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
+ timeout(10) {
+ bat 'mvn -f shared/p2 clean package'
+ }
}
}
- }
- stage ('[win] Build Eclipse plug-ins') {
- withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
- timeout(20) {
- wrap([$class: 'Xvfb']) {
- bat 'mvn -f eclipse clean verify -Ddebug'
+ stage ('[win] Build Eclipse plug-ins') {
+ withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
+ timeout(20) {
+ wrap([$class: 'Xvfb']) {
+ bat 'mvn -f eclipse clean verify -Ddebug'
+ }
+ // workaround for
https://issues.jenkins-ci.org/browse/JENKINS-55889
+ junit 'eclipse/**/surefire-reports/*.xml'
+ archiveArtifacts artifacts: 'eclipse/**/logs/*.log'
}
- // workaround for
https://issues.jenkins-ci.org/browse/JENKINS-55889
- junit 'eclipse/**/surefire-reports/*.xml'
- archiveArtifacts artifacts: 'eclipse/**/logs/*.log'
}
}
}