fix pipeline #22

Closed
bquarkz wants to merge 10 commits from fix/pipeline into master
Showing only changes of commit 0a6a9bae49 - Show all commits

4
Jenkinsfile vendored
View File

@ -3,10 +3,10 @@ pipeline {
stages { stages {
stage('Application Test') { stage('Application Test') {
withChecks(name: 'Test', includeStage: true) { // withChecks(name: 'Test', includeStage: true) {
sh './gradlew clean test' sh './gradlew clean test'
junit '**/build/test-results/test/TEST-*.xml' junit '**/build/test-results/test/TEST-*.xml'
} // }
} }
} }
} }