Skip to content

Commit

Permalink
Don't expect performance report from compile test
Browse files Browse the repository at this point in the history
  • Loading branch information
WardBrian committed Sep 7, 2023
1 parent 4b5761b commit 5586de1
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*") }}
Expand All @@ -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/*") }}
Expand Down Expand Up @@ -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/*") }}
Expand Down Expand Up @@ -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/*") }}
Expand Down

0 comments on commit 5586de1

Please sign in to comment.