fix/pipeline #19

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

4
Jenkinsfile vendored
View File

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