diff --git a/Jenkinsfile b/Jenkinsfile index 6098460..3008c84 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,13 +4,13 @@ pipeline { stages { stage('build') { steps { - withChecks(name: 'build', in) { + withChecks(name: 'build', includeStage: true) { sh './gradlew clean testClasses' } - withChecks(name: 'unit-tests', in) { + withChecks(name: 'unit-tests', includeStage: true) { sh './gradlew test' } - withChecks(name: 'test-coverage', in) { + withChecks(name: 'test-coverage', includeStage: true) { sh './gradlew jacocoTestReport jacocoTestCoverageVerification' junit '**/build/test-results/test/TEST-*.xml' }