This is an automated email from the ASF dual-hosted git repository. cegerton pushed a commit to branch C0urante-patch-1 in repository https://gitbox.apache.org/repos/asf/kafka.git
commit 0195172e3779b9cc9d7ad8965aae75ca016dcfb5 Author: Chris Egerton <chr...@aiven.io> AuthorDate: Tue Jan 23 09:40:58 2024 -0500 MINOR: Fix "No suitable checks publisher found" message during CI build This message keeps popping up in our CI builds during the "Archive JUnit-formatted test results" step, and can be misleading since it appears to indicate that something is wrong. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 50b7f6a298e..0b2d14c0b72 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,7 @@ def doTest(env, target = "test") { sh """./gradlew -PscalaVersion=$SCALA_VERSION ${target} \ --profile --continue -PkeepAliveMode="session" -PtestLoggingEvents=started,passed,skipped,failed \ -PignoreFailures=true -PmaxParallelForks=2 -PmaxTestRetries=1 -PmaxTestRetryFailures=10""" - junit '**/build/test-results/**/TEST-*.xml' + junit skipPublishingChecks: true, testResults: '**/build/test-results/**/TEST-*.xml' } def doStreamsArchetype() {