add withChecks into pipeline

This commit is contained in:
Nilton Constantino 2025-02-19 13:18:27 +00:00
parent 7c924fbef2
commit 0a6a9bae49

4
Jenkinsfile vendored
View File

@ -3,10 +3,10 @@ pipeline {
stages {
stage('Application Test') {
withChecks(name: 'Test', includeStage: true) {
// withChecks(name: 'Test', includeStage: true) {
sh './gradlew clean test'
junit '**/build/test-results/test/TEST-*.xml'
}
// }
}
}
}