Skip to content
Snippets Groups Projects
Commit 6cf0349d authored by Ralf Jung's avatar Ralf Jung
Browse files

update CI

parent e3b46220
Branches
Tags
No related merge requests found
Pipeline #
image: ralfjung/opam-ci:latest
stages:
- build
variables:
CPU_CORES: "9"
CPU_CORES: "10"
.template: &template
stage: build
tags:
- fp
script:
......@@ -14,6 +18,8 @@ variables:
- 'time make -k -j$CPU_CORES TIMED=y 2>&1 | tee build-log.txt'
- 'if fgrep Axiom build-log.txt >/dev/null; then exit 1; fi'
- 'cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \((real|user): [0-9]" | tee build-time.txt'
# maybe validate
- 'if [[ -n "$VALIDATE" ]]; then make validate; fi'
cache:
key: "$CI_JOB_NAME"
paths:
......
......@@ -15,7 +15,7 @@ clean: Makefile.coq
# Create Coq Makefile. POSIX awk can't do in-place editing, but coq_makefile wants the real
# filename, so we do some file gymnastics.
Makefile.coq: _CoqProject Makefile awk.Makefile
coq_makefile -f _CoqProject -o Makefile.coq
"$(COQBIN)coq_makefile" -f _CoqProject -o Makefile.coq
mv Makefile.coq Makefile.coq.tmp && awk -f awk.Makefile Makefile.coq.tmp > Makefile.coq && rm Makefile.coq.tmp
# Install build-dependencies
......
......@@ -63,5 +63,6 @@ echo "[opam-ci] Installing build-dependencies"
make build-dep OPAMFLAGS=-y
# done
set +x
echo
coqc -v
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment