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 3ddaca1 SLING-7597 - Investigate setting up Windows testing
3ddaca1 is described below
commit 3ddaca1488ab2d07f7845386920b9db101e50783
Author: Robert Munteanu <[email protected]>
AuthorDate: Tue Feb 26 22:36:35 2019 +0100
SLING-7597 - Investigate setting up Windows testing
Distinguish between Windows and Linux stages.
---
Jenkinsfile | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 5682479..793d35e 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -10,7 +10,7 @@ parallel 'linux' : {
def helper = new SlingJenkinsHelper()
helper.runWithErrorHandling({ jobConfig ->
- stage('Build shared code') {
+ stage('[linux] Build shared code') {
withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
timeout(10) {
sh "mvn -f shared/modules clean install"
@@ -18,7 +18,7 @@ parallel 'linux' : {
}
}
- stage('Build CLI bundles') {
+ stage('[linux] Build CLI bundles') {
withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
timeout(10) {
sh "mvn -f cli clean install"
@@ -26,7 +26,7 @@ parallel 'linux' : {
}
}
- stage ('Build shared code P2 repository') {
+ stage ('[linux] Build shared code P2 repository') {
withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
timeout(10) {
sh 'mvn -f shared/p2 clean package'
@@ -34,7 +34,7 @@ parallel 'linux' : {
}
}
- stage ('Build Eclipse plug-ins') {
+ stage ('[linux] Build Eclipse plug-ins') {
withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
timeout(20) {
wrap([$class: 'Xvfb']) {
@@ -54,7 +54,7 @@ parallel 'linux' : {
def helper = new SlingJenkinsHelper()
helper.runWithErrorHandling({ jobConfig ->
- stage('Build shared code') {
+ stage('[win] Build shared code') {
withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
timeout(10) {
bat "mvn -f shared/modules clean install"
@@ -62,7 +62,7 @@ parallel 'linux' : {
}
}
- stage('Build CLI bundles') {
+ stage('[win] Build CLI bundles') {
withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
timeout(10) {
bat "mvn -f cli clean install"
@@ -70,7 +70,7 @@ parallel 'linux' : {
}
}
- stage ('Build shared code P2 repository') {
+ 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'
@@ -78,7 +78,7 @@ parallel 'linux' : {
}
}
- stage ('Build Eclipse plug-ins') {
+ stage ('[win] Build Eclipse plug-ins') {
withMaven(maven: mvnVersion, jdk: javaVersion, options:
[artifactsPublisher(disabled: true)]) {
timeout(20) {
wrap([$class: 'Xvfb']) {