diff options
| author | Jason Gross | 2019-01-16 17:02:12 -0500 |
|---|---|---|
| committer | Jason Gross | 2019-01-16 17:02:12 -0500 |
| commit | fc1756508a6cc5f756e08cdc7c108117025d4194 (patch) | |
| tree | ca2d55c777095effc6ded8b914d013abdb8eb1d4 /dev | |
| parent | c5d4472e3df352188123a90ef53b7383d9e1ba55 (diff) | |
[ci] Update fiat-crypto to the new pipeline
We're recently reorganized fiat-crypto. This should fix the OOM CI
issues.
Fixes #9338
Diffstat (limited to 'dev')
| -rwxr-xr-x | dev/ci/ci-fiat-crypto.sh | 6 |
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} ) |
