Skip to content

Commit 4fc9d68

Browse files
committed
Allow unstable builds
1 parent 6b7ee3c commit 4fc9d68

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Jenkinsfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ spec:
8383
stage('Prepare-environment') {
8484
steps {
8585
container('container') {
86-
sh 'mutter --replace --sm-disable &'
8786
dir ('eclipse.platform.swt') {
8887
checkout scm
8988
}
@@ -102,15 +101,17 @@ spec:
102101
sh '/opt/tools/apache-maven/latest/bin/mvn --batch-mode -Pbuild-individual-bundles -DforceContextQualifier=zzz -Dnative=gtk.linux.x86_64 -DskipJni -DskipRust -Dcompare-version-with-baselines.skip=true -Dmaven.compiler.failOnWarning=true install '
103102
}
104103
dir ('eclipse.platform.swt') {
105-
sh '/opt/tools/apache-maven/latest/bin/mvn --batch-mode -Pbuild-individual-bundles -DcheckAllWS=true -DforkCount=0 -Dcompare-version-with-baselines.skip=false -Dmaven.compiler.failOnWarning=true clean verify '
104+
sh '/opt/tools/apache-maven/latest/bin/mvn --batch-mode -Pbuild-individual-bundles -DcheckAllWS=true -DforkCount=0 -Dcompare-version-with-baselines.skip=false -Dmaven.compiler.failOnWarning=true \
105+
-Dmaven.test.failure.ignore=true -Dmaven.test.error.ignore=true \
106+
clean verify '
106107
}
107108
}
108109
}
109110
}
110111
}
111112
post {
112113
always {
113-
junit '**/*.test*/target/surefire-reports/*.xml'
114+
junit 'eclipse.platform.swt/tests/*.test*/target/surefire-reports/*.xml'
114115
archiveArtifacts artifacts: '**/*.log,**/*.html,**/target/*.jar,**/target/*.zip'
115116
publishIssues issues:[scanForIssues(tool: java()), scanForIssues(tool: mavenConsole())]
116117
}

0 commit comments

Comments
 (0)