File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -98,19 +98,19 @@ pipeline {
9898 sh ' git clean -xffd'
9999
100100 def stanMathSigs = [' test/integration/signatures/stan_math_signatures.t' ]. join(" " )
101- skipExpressionTests = utils. verifyChanges(stanMathSigs)
101+ skipExpressionTests = utils. verifyChanges(stanMathSigs, " master " )
102102
103103 def runTestPaths = [' src' , ' test/integration/good' , ' test/stancjs' ]. join(" " )
104- skipRemainingStages = utils. verifyChanges(runTestPaths)
104+ skipRemainingStages = utils. verifyChanges(runTestPaths, " master " )
105105
106106 def compileTests = [' test/integration/good' ]. join(" " )
107- skipCompileTests = utils. verifyChanges(compileTests)
107+ skipCompileTests = utils. verifyChanges(compileTests, " master " )
108108
109109 def compileTestsAtO1 = [' test/integration/good/compiler-optimizations' ]. join(" " )
110- skipCompileTestsAtO1 = utils. verifyChanges(compileTestsAtO1)
110+ skipCompileTestsAtO1 = utils. verifyChanges(compileTestsAtO1, " master " )
111111
112112 def sourceCodePaths = [' src' ]. join(" " )
113- skipRebuildingBinaries = utils. verifyChanges(sourceCodePaths)
113+ skipRebuildingBinaries = utils. verifyChanges(sourceCodePaths, " master " )
114114 }
115115 }
116116 }
Original file line number Diff line number Diff line change 11STANC3 RELEASE NOTES
22======================================================================
33
4+ v2.29.2 (25 March 2022)
5+ ======================================================================
6+
7+ - Fixed a bug fix with `--O1` when arrays declared in transformed parameters or model were assigned data.
8+ - Added missing signatures for `normal_id_glm_lpdf`.
9+ - Fixed a compilation error with forward declarations.
10+ - Disabled AD level optimizations in `--O1` optimizations.
11+ - MIR pretty printing now always adds ( and ) around the ternary operator ?:
12+
413v2.29.1 (2 March 2022)
514======================================================================
615
You can’t perform that action at this time.
0 commit comments