aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2018-08-29 14:42:44 +0200
committerEmilio Jesus Gallego Arias2018-08-29 14:42:44 +0200
commitb7a7cf467b9e725c36681676dc87e41a918503c3 (patch)
treedb550b1345a259b19b2f7128c89717538c8f6b9f /dev
parentccb6729593cd35d9c1cfa680927f15cda635ad8f (diff)
parentd57ba6cdf28375fa638d813fc2a3f0b072721dad (diff)
Merge PR #8313: [ci-fiat-crypto] Test extraction
Diffstat (limited to 'dev')
-rwxr-xr-xdev/ci/ci-fiat-crypto.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/dev/ci/ci-fiat-crypto.sh b/dev/ci/ci-fiat-crypto.sh
index 659511dbea..c6d2f0cfd9 100755
--- a/dev/ci/ci-fiat-crypto.sh
+++ b/dev/ci/ci-fiat-crypto.sh
@@ -9,4 +9,7 @@ git_checkout "${fiat_crypto_CI_BRANCH}" "${fiat_crypto_CI_GITURL}" "${fiat_crypt
( cd "${fiat_crypto_CI_DIR}" && git submodule update --init --recursive )
-( cd "${fiat_crypto_CI_DIR}" && make new-pipeline )
+# We need a larger stack size to not overflow ocamlopt+flambda when
+# building the executables.
+# c.f. https://github.com/coq/coq/pull/8313#issuecomment-416650241
+( cd "${fiat_crypto_CI_DIR}" && ulimit -s 32768 && make new-pipeline c-files )