From 5586de1009ad122d9d6fd098c8a1bbccfe7f6320 Mon Sep 17 00:00:00 2001 From: Brian Ward Date: Thu, 7 Sep 2023 09:22:34 -0400 Subject: [PATCH] Don't expect performance report from compile test --- Jenkinsfile | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 492cb3e11..eddbc0eb0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -283,14 +283,6 @@ pipeline { script { checkCompilation("../test/integration/good", params.stanc_flags) } - - xunit([GoogleTest( - deleteOutputFiles: false, - failIfNotNew: true, - pattern: 'performance-tests-cmdstan/performance.xml', - skipNoTestFiles: false, - stopProcessingIfError: false) - ]) } } post { always { runShell("rm -rf ${env.WORKSPACE}/compile-tests-good/*") }} @@ -315,14 +307,6 @@ pipeline { unstash "Stanc3Setup" checkCompilation("example-models", params.stanc_flags) } - - xunit([GoogleTest( - deleteOutputFiles: false, - failIfNotNew: true, - pattern: 'performance-tests-cmdstan/performance.xml', - skipNoTestFiles: false, - stopProcessingIfError: false) - ]) } } post { always { runShell("rm -rf ${env.WORKSPACE}/compile-tests-example/*") }} @@ -352,14 +336,6 @@ pipeline { script { checkCompilation("../test/integration/good", "--O1") } - - xunit([GoogleTest( - deleteOutputFiles: false, - failIfNotNew: true, - pattern: 'performance-tests-cmdstan/performance.xml', - skipNoTestFiles: false, - stopProcessingIfError: false) - ]) } } post { always { runShell("rm -rf ${env.WORKSPACE}/compile-good-O1/*") }} @@ -389,14 +365,6 @@ pipeline { unstash "Stanc3Setup" checkCompilation("example-models", "--O1") } - - xunit([GoogleTest( - deleteOutputFiles: false, - failIfNotNew: true, - pattern: 'performance-tests-cmdstan/performance.xml', - skipNoTestFiles: false, - stopProcessingIfError: false) - ]) } } post { always { runShell("rm -rf ${env.WORKSPACE}/compile-example-O1/*") }}