Skip to content

Commit

Permalink
add TBB build specifics
Browse files Browse the repository at this point in the history
  • Loading branch information
wds15 committed Jun 16, 2019
1 parent 17a94d9 commit a508c59
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ def runTests(String prefix = "") {
"""
}

def runWinTests(String prefix = "") {
""" mingw32-make -j${env.PARALLEL} build
${prefix}runCmdStanTests.py -j${env.PARALLEL} src/test/interface
"""
}

def deleteDirWin() {
bat "attrib -r -s /s /d"
deleteDir()
Expand Down Expand Up @@ -58,7 +64,7 @@ pipeline {
agent { label 'windows' }
steps {
setupCXX()
bat runTests()
bat runWinTests()
}
post {
always {
Expand Down Expand Up @@ -86,6 +92,7 @@ pipeline {
steps {
setupCXX("${MPICXX}")
sh "echo STAN_MPI=true >> make/local"
sh "echo CXX_TYPE=gcc >> make/local"
sh "make build-mpi > build-mpi.log 2>&1"
sh runTests("./")
}
Expand Down

0 comments on commit a508c59

Please sign in to comment.