fix pipeline #22

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

13
Jenkinsfile vendored
View File

@ -2,11 +2,14 @@ pipeline {
agent any agent any
stages { stages {
stage('Application Test') { stage('Test') {
// withChecks(name: 'Test', includeStage: true) { steps {
sh './gradlew clean test' withChecks(name: 'Test', includeStage: true) {
junit '**/build/test-results/test/TEST-*.xml' echo 'Testing..'
// } sh './gradlew clean test'
junit '**/build/test-results/test/TEST-*.xml'
}
}
} }
} }
} }