From 79276e68fe83322f1249e8a8be96bd63c583ae56 Mon Sep 17 00:00:00 2001 From: Chad Dougherty Date: Fri, 5 Nov 2021 10:12:08 -0400 Subject: [PATCH] remove junit from microbenchmark stage (#1640) This stage does not produce any junit results anyway. The junit Jenkins plugin prior to version 1.53 would silently ignore missing & empty test result files. As of version 1.53, it produces an error that fails the stage. Signed-off-by: Chad Dougherty --- Jenkinsfile-utils.groovy | 1 - 1 file changed, 1 deletion(-) diff --git a/Jenkinsfile-utils.groovy b/Jenkinsfile-utils.groovy index b21045f911..5e83997a41 100644 --- a/Jenkinsfile-utils.groovy +++ b/Jenkinsfile-utils.groovy @@ -347,7 +347,6 @@ void stageNightlyMicrobenchmark() { ''', label:'Microbenchmark' archiveArtifacts 'script/testing/*.json' - junit 'script/testing/*.xml' stagePost() }