Merge pull request #25 from kemitix/jenkins

Jenkins
This commit is contained in:
Paul Campbell 2018-03-04 09:21:32 +00:00 committed by GitHub
commit d66e1d581a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 9 deletions

View file

@ -1,6 +1,13 @@
CHANGELOG
=========
0.6.0
-----
* jenkins: add Coverage stage
* jenkins: split Reporting stage into Test Results and Archiving
* jenkins: remove java 9 testing from `develop` branch
0.5.1
-----

View file

@ -30,22 +30,23 @@ pipeline {
}
}
}
// requires maven-failsafe-plugin:2.21 when it is released
// stage('Java 9') {
// steps {
// withMaven(maven: 'maven 3.5.2', jdk: 'JDK 9') {
// sh 'mvn clean install'
// }
// }
// }
}
}
stage('Reporting') {
stage('Test Results') {
steps {
junit '**/target/surefire-reports/*.xml'
}
}
stage('Archiving') {
steps {
archiveArtifacts '**/target/*.jar'
}
}
stage('Coverage') {
steps {
jacoco(execPattern: '**/target/jacoco.exec')
}
}
stage('Deploy') {
when { expression { (env.GIT_BRANCH == 'master') } }
steps {