JenkinsTest/Jenkinsfile
2025-02-19 13:10:15 +00:00

15 lines
272 B
Groovy

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