15 lines
272 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|