fix/pipeline #19

Closed
bquarkz wants to merge 18 commits from fix/pipeline into master
Showing only changes of commit 983b67833b - Show all commits

13
Jenkinsfile vendored
View File

@ -2,11 +2,16 @@ pipeline {
agent any
stages {
stage('Test') {
stage('build') {
steps {
withChecks(name: 'Test') {
echo 'Testing..'
sh './gradlew clean test jacocoTestReport jacocoTestCoverageVerification'
withChecks(name: 'build', in) {
sh './gradlew clean testClasses'
}
withChecks(name: 'unit-tests', in) {
sh './gradlew test'
}
withChecks(name: 'test-coverage', in) {
sh './gradlew jacocoTestReport jacocoTestCoverageVerification'
junit '**/build/test-results/test/TEST-*.xml'
}
}