Skip to content

Commit

Permalink
CI Debug: print compiler flags
Browse files Browse the repository at this point in the history
  • Loading branch information
WardBrian committed May 22, 2024
1 parent d99f263 commit d1fbb3b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import org.stan.Utils
def runTests(String testPath, boolean jumbo = false) {
try {
sh "cat make/local"
sh "make print-compiler-flags"
if (jumbo && !params.disableJumbo) {
sh "python3 runTests.py -j${env.PARALLEL} ${testPath} --jumbo --debug"
} else {
Expand Down Expand Up @@ -142,8 +143,8 @@ pipeline {
}
post {
always {
recordIssues(
enabledForFailure: true,
recordIssues(
enabledForFailure: true,
tools: [cppLint(),groovyScript(parserId: 'mathDependencies', pattern: '**/dependencies.log')]
)
deleteDir()
Expand Down Expand Up @@ -575,7 +576,7 @@ pipeline {
always {
node("linux") {
recordIssues(
enabledForFailure: false,
enabledForFailure: false,
tool: clang()
)
}
Expand Down

0 comments on commit d1fbb3b

Please sign in to comment.