Skip to content

Commit 68db0d8

Browse files
committed
Update CI
1 parent 0012e20 commit 68db0d8

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ def runPerformanceTests(String testsPath, String stancFlags = ""){
5050
cd cmdstan; make clean-all;
5151
"""
5252

53-
if (stancFlags?.trim()) {
54-
sh "cd performance-tests-cmdstan/cmdstan && echo 'STANCFLAGS= $stancFlags' >> make/local"
55-
}
53+
// if (stancFlags?.trim()) {
54+
sh "cd performance-tests-cmdstan/cmdstan && echo 'STANCFLAGS= --allow-unicode $stancFlags' >> make/local"
55+
// }
5656

5757
sh """
5858
cd performance-tests-cmdstan/cmdstan
@@ -803,7 +803,7 @@ pipeline {
803803
dir '.'
804804
label 'linux && emulation'
805805
args "${qemuArchFlag(ARCHITECTURE)} --group-add=987 --group-add=980 --group-add=988 --entrypoint='' -v /var/run/docker.sock:/var/run/docker.sock"
806-
additionalBuildArgs "${qemuArchFlag(ARCHITECTURE)} --build-arg PUID=\$(id -u) --build-arg PGID=\$(id -g)"
806+
additionalBuildArgs "${qemuArchFlag(ARCHITECTURE)} --ulimit stack=67108864 --build-arg PUID=\$(id -u) --build-arg PGID=\$(id -g)"
807807
}
808808
}
809809
steps {

dune-project

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
(= 2.1.0))
2727
(cmdliner
2828
(= 1.3.0))
29+
(uucp
30+
(= 16.0.0))
31+
(uunf
32+
(= 16.0.0))
2933
(ocamlformat
3034
(and
3135
:with-test

scripts/install_build_deps_windows.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ eval $(opam env)
99
# Add windows repository
1010
opam repository add windows http://github.com/ocaml-cross/opam-cross-windows.git
1111

12-
# Request the compiler to be built with flambda optimizers
13-
opam install -y conf-flambda-windows
14-
1512
# Install the compiler
1613
opam install -y "ocaml-windows64=4.14.1"
1714

stanc.opam

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ depends: [
1010
"fmt" {= "0.9.0"}
1111
"yojson" {= "2.1.0"}
1212
"cmdliner" {= "1.3.0"}
13+
"uucp" {= "16.0.0"}
14+
"uunf" {= "16.0.0"}
1315
"ocamlformat" {with-test & = "0.26.1"}
1416
"bisect_ppx" {with-test}
1517
"merlin" {with-test}

0 commit comments

Comments
 (0)