Update Jenkinsfile

This commit is contained in:
Stijn Bannink 2020-02-25 15:33:36 +01:00 committed by GitHub
parent 50864479c9
commit d4dcac48ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
Jenkinsfile vendored
View file

@ -1,11 +1,28 @@
pipeline {
agent any
tools {
maven 'Maven 3.3.9'
jdk 'jdk8'
}
stages {
stage('Build') {
stage ('Initialize') {
steps {
echo 'Building V10Lift...'
sh '''
echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}"
'''
}
}
stage ('Build') {
steps {
sh 'mvn -Dmaven.test.failure.ignore=true install'
}
post {
success {
junit 'target/v10lift2/**/*.xml'
}
}
}
}
}