JenkinsTest/Jenkinsfile
2025-02-19 13:09:41 +00:00

13 lines
229 B
Groovy

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