Skip to content

Commit

Permalink
newline error on jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveBronder committed May 29, 2024
1 parent 617ee47 commit 0b95d16
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -264,9 +264,8 @@ pipeline {
sh "cmake -S . -B \"build\" -DCMAKE_BUILD_TYPE=RELEASE"
sh "cd build"
sh "make -j${env.PARALLEL} unit_math_subtests"
sh "
./test/unit/test_unit_math && \
./test/unit/test_unit_math_fwd && \
sh "./test/unit/test_unit_math && \
./test/unit/test_unit_math_fwd && \
./test/unit/test_unit_math_fwd_core && \
./test/unit/test_unit_math_fwd_fun && \
./test/unit/test_unit_math_fwd_functor && \
Expand All @@ -291,8 +290,7 @@ pipeline {
./test/unit/test_unit_math_rev_fun && \
./test/unit/test_unit_math_rev_functor && \
./test/unit/test_unit_math_rev_meta && \
./test/unit/test_unit_math_rev_prob
"
./test/unit/test_unit_math_rev_prob"
}
post { always { retry(3) { deleteDir() } } }
}
Expand Down

0 comments on commit 0b95d16

Please sign in to comment.