diff --git a/Jenkinsfile b/Jenkinsfile index 5cd8f02..d443e82 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,12 @@ pipeline { agent any - stage('Application Test') { - withChecks(name: 'Test', includeStage: true) { - sh './gradlew clean test' - junit '**/build/test-results/test/TEST-*.xml' + stages { + stage('Application Test') { + withChecks(name: 'Test', includeStage: true) { + sh './gradlew clean test' + junit '**/build/test-results/test/TEST-*.xml' + } } } }