From aae261ffa3c2718792a9beef3d1692960c6d3016 Mon Sep 17 00:00:00 2001 From: bQUARKz Date: Wed, 19 Feb 2025 14:20:06 +0000 Subject: [PATCH] add withChecks into pipeline --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e324df4..07a6c2a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,7 +6,7 @@ pipeline { steps { withChecks(name: 'Test') { echo 'Testing..' - sh './gradlew clean jacocoTestReport jacocoTestCoverageVerification' + sh './gradlew clean test jacocoTestReport jacocoTestCoverageVerification' junit '**/build/test-results/test/TEST-*.xml' } }