Skip to content

Commit

Permalink
Removed expressions tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbales2 committed Mar 18, 2021
1 parent efe1073 commit 30d5a02
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -360,32 +360,6 @@ pipeline {
}
post { always { deleteDirWin() } }
}
stage('Math functions expressions test') {
agent any
steps {
unstash 'StanSetup'
setupCXX(true, env.CXX, stanc3_bin_url())
script {
dir("lib/stan_math/") {
sh "echo O=0 > make/local"
withEnv(['PATH+TBB=./lib/tbb']) {
try { sh "./runTests.py -j${env.PARALLEL} test/expressions" }
finally { junit 'test/**/*.xml' }
}
withEnv(['PATH+TBB=./lib/tbb']) {
sh "python ./test/expressions/test_expression_testing_framework.py"
}
sh "make clean-all"
sh "echo STAN_THREADS=true >> make/local"
withEnv(['PATH+TBB=./lib/tbb']) {
try { sh "./runTests.py -j${env.PARALLEL} test/expressions" }
finally { junit 'test/**/*.xml' }
}
}
}
}
post { always { deleteDir() } }
}
}
when {
expression {
Expand Down

0 comments on commit 30d5a02

Please sign in to comment.