fix pipeline #22

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

9
Jenkinsfile vendored
View File

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