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

switch to new CI machine

parent e9941790
No related branches found
No related tags found
No related merge requests found
Pipeline #
image: ralfjung/opam-ci:latest image: ralfjung/opam-ci:latest
variables:
CPU_CORES: "9"
lrust-coq8.6: lrust-coq8.6:
tags:
- fp-timing
script: script:
# prepare # prepare
- . build/opam-ci.sh coq 8.6 coq-mathcomp-ssreflect 1.6.1 - . build/opam-ci.sh coq 8.6 coq-mathcomp-ssreflect 1.6.1
- env | egrep '^(CI_BUILD_REF|CI_RUNNER)' > build-env.txt
# build # build
- 'time make -j8 TIMED=y 2>&1 | tee build-log.txt' - 'time make -j$CPU_CORES TIMED=y 2>&1 | tee build-log.txt'
- 'if fgrep Axiom build-log.txt >/dev/null; then exit 1; fi' - 'if fgrep Axiom build-log.txt >/dev/null; then exit 1; fi'
- 'cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time.txt' - 'cat build-log.txt | egrep "[a-zA-Z0-9_/-]+ \(user: [0-9]" | tee build-time.txt'
cache: cache:
...@@ -18,3 +24,4 @@ lrust-coq8.6: ...@@ -18,3 +24,4 @@ lrust-coq8.6:
artifacts: artifacts:
paths: paths:
- build-time.txt - build-time.txt
- build-env.txt
...@@ -4,16 +4,21 @@ set -e ...@@ -4,16 +4,21 @@ set -e
# Prepare OPAM configuration # Prepare OPAM configuration
export OPAMROOT="$(pwd)/opamroot" export OPAMROOT="$(pwd)/opamroot"
export OPAMJOBS=16 export OPAMJOBS="$((2*$CPU_CORES))"
export OPAM_EDITOR="$(which false)" export OPAM_EDITOR="$(which false)"
# Make sure we got a good OPAM # Make sure we got a good OPAM
test -d "$OPAMROOT" || (mkdir "$OPAMROOT" && opam init --no-setup -y) test -d "$OPAMROOT" || (mkdir "$OPAMROOT" && opam init --no-setup -y)
eval `opam conf env` eval `opam conf env`
if test $(find "$OPAMROOT/repo/package-index" -mtime +0); then
# last update was more than a day ago
opam update
else
echo "[opam-ci] Not updating opam."
fi
test -d "$OPAMROOT/repo/coq-extra-dev" || opam repo add coq-extra-dev https://coq.inria.fr/opam/extra-dev -p 5 test -d "$OPAMROOT/repo/coq-extra-dev" || opam repo add coq-extra-dev https://coq.inria.fr/opam/extra-dev -p 5
test -d "$OPAMROOT/repo/coq-core-dev" || opam repo add coq-core-dev https://coq.inria.fr/opam/core-dev -p 5 test -d "$OPAMROOT/repo/coq-core-dev" || opam repo add coq-core-dev https://coq.inria.fr/opam/core-dev -p 5
test -d "$OPAMROOT/repo/coq-released" || opam repo add coq-released https://coq.inria.fr/opam/released -p 10 test -d "$OPAMROOT/repo/coq-released" || opam repo add coq-released https://coq.inria.fr/opam/released -p 10
opam update
# Install fixed versions of some dependencies # Install fixed versions of some dependencies
echo echo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment