18 lines
347 B
Groovy
18 lines
347 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Test') {
|
|
steps {
|
|
withChecks(name: 'Test', includeStage: true) {
|
|
echo 'Testing..'
|
|
sh './gradlew clean test'
|
|
junit '**/build/test-results/test/TEST-*.xml'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|