Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
32e1fa96e8
1 changed files with 30 additions and 7 deletions
27
Jenkinsfile
vendored
27
Jenkinsfile
vendored
|
@ -1,11 +1,34 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
|
tools {
|
||||||
|
maven 'Maven 3.6.3'
|
||||||
|
jdk 'jdk8'
|
||||||
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage ('Initialize') {
|
||||||
steps {
|
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 {
|
||||||
|
always {
|
||||||
|
echo 'Archiving coverage results...'
|
||||||
|
jacoco(execPattern: '**/**.exec', classPattern: '**/classes', sourcePattern: '**/src/main/java')
|
||||||
|
echo 'Archiving test results...'
|
||||||
|
junit 'target/surefire-reports/*.xml'
|
||||||
|
echo 'Archiving artifacts...'
|
||||||
|
archiveArtifacts artifacts: 'target/*.jar', fingerprint: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue