Jenkins experiment with windows and timeouts

This commit is contained in:
Joakim Erdfelt 2016-07-28 15:02:56 -07:00
parent 71b0c88607
commit 995a78053c
1 changed files with 32 additions and 6 deletions

38
Jenkinsfile vendored
View File

@ -1,4 +1,4 @@
node {
node('linux') {
// System Dependent Locations
def mvntool = tool name: 'maven3', type: 'hudson.tasks.Maven$MavenInstallation'
def jdktool = tool name: 'jdk7', type: 'hudson.model.JDK'
@ -25,10 +25,36 @@ node {
stage 'Test'
withEnv(mvnEnv) {
// Run package then test phase / skip main compilation / ignore failures
sh "mvn -B install test -Dmaven.main.skip=true -Dmaven.test.failure.ignore=true"
// Report failures in the jenkins UI
step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
timeout(60) {
withEnv(mvnEnv) {
// Run package then test phase / skip main compilation / ignore failures
sh "mvn -B install test -Dmaven.main.skip=true -Dmaven.test.failure.ignore=true"
// Report failures in the jenkins UI
step([$class: 'JUnitResultArchiver', testResults: '**/target/surefire-reports/TEST-*.xml'])
}
}
}
node('windows') {
// System Dependent Locations
def mvntool = tool name: 'maven3', type: 'hudson.tasks.Maven$MavenInstallation'
def jdktool = tool name: 'jdk7', type: 'hudson.model.JDK'
// Environment
List mvnEnv = ["PATH+MVN=${mvntool}/bin", "PATH+JDK=${jdktool}/bin", "JAVA_HOME=${jdktool}/", "MAVEN_HOME=${mvntool}"]
mvnEnv.add("MAVEN_OPTS=-Xms256m -Xmx1024m -XX:MaxPermSize=512m -Djava.awt.headless=true")
stage 'Checkout (Windows)'
checkout scm
stage 'Build + Test (Windows)'
timeout(60) {
withEnv(mvnEnv) {
bat "mvn -B clean install -Dmaven.test.failure.ignore=true"
// Report failures in the jenkins UI
step([$class: 'JUnitResultArchiver', testResults: '**\\target\\surefire-reports\\TEST-*.xml'])
}
}
}