aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorGaëtan Gilbert2019-01-17 16:16:44 +0000
committerGaëtan Gilbert2019-01-17 16:16:44 +0000
commit47c6f0ddacf340d4027fce181ee8ac8a0369188f (patch)
tree813edfc3d285256abf7b084457704114725416d6 /dev
parent2e231b0eb3d107aedc7a26dc173d6ac00cb3473f (diff)
parentfc1756508a6cc5f756e08cdc7c108117025d4194 (diff)
Merge PR #9345: [ci] Update fiat-crypto to the new pipeline
Reviewed-by: SkySkimmer
Diffstat (limited to 'dev')
-rwxr-xr-xdev/ci/ci-fiat-crypto.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/dev/ci/ci-fiat-crypto.sh b/dev/ci/ci-fiat-crypto.sh
index 7e8013be9b..bba17314f7 100755
--- a/dev/ci/ci-fiat-crypto.sh
+++ b/dev/ci/ci-fiat-crypto.sh
@@ -10,5 +10,9 @@ git_download fiat_crypto
# building the executables.
# c.f. https://github.com/coq/coq/pull/8313#issuecomment-416650241
+fiat_crypto_CI_TARGETS1="c-files printlite lite"
+fiat_crypto_CI_TARGETS2="print-nobigmem nobigmem"
+
( cd "${CI_BUILD_DIR}/fiat_crypto" && git submodule update --init --recursive && \
- ulimit -s 32768 && make new-pipeline c-files )
+ ulimit -s 32768 && \
+ make ${fiat_crypto_CI_TARGETS1} && make -j 1 ${fiat_crypto_CI_TARGETS2} )