add withChecks into pipeline

This commit is contained in:
bQUARKz 2025-02-19 14:20:06 +00:00
parent 9c34ce094f
commit aae261ffa3

2
Jenkinsfile vendored
View File

@ -6,7 +6,7 @@ pipeline {
steps {
withChecks(name: 'Test') {
echo 'Testing..'
sh './gradlew clean jacocoTestReport jacocoTestCoverageVerification'
sh './gradlew clean test jacocoTestReport jacocoTestCoverageVerification'
junit '**/build/test-results/test/TEST-*.xml'
}
}