Skip to content
Snippets Groups Projects
opam-ci.sh 2.53 KiB
Newer Older
Ralf Jung's avatar
Ralf Jung committed
#!/bin/bash
set -e
## This script installs the build dependencies for CI builds.
function run_and_print() {
    echo "$ $@"
    "$@"
}
Ralf Jung's avatar
Ralf Jung committed

# Prepare OPAM configuration
export OPAMROOT="$(pwd)/opamroot"
Ralf Jung's avatar
Ralf Jung committed
export OPAMJOBS="$((2*$CPU_CORES))"
Ralf Jung's avatar
Ralf Jung committed
export OPAM_EDITOR="$(which false)"

# Make sure we got a good OPAM.
test -d "$OPAMROOT" || (mkdir "$OPAMROOT" && run_and_print opam init --no-setup -y)
Ralf Jung's avatar
Ralf Jung committed
eval `opam conf env`
Ralf Jung's avatar
Ralf Jung committed

# Make sure the pin for the builddep package is not stale.
run_and_print make build-dep/opam

Ralf Jung's avatar
Ralf Jung committed
# Update repositories
Ralf Jung's avatar
Ralf Jung committed
if test $(find "$OPAMROOT/repo/package-index" -mtime +0); then
    # last update was more than a day ago
    run_and_print opam update
Ralf Jung's avatar
Ralf Jung committed
else
Ralf Jung's avatar
Ralf Jung committed
    # only update iris-dev, and only if it already exists
    if test -d "$OPAMROOT/repo/iris-dev"; then run_and_print opam update iris-dev; fi
Ralf Jung's avatar
Ralf Jung committed
fi
Ralf Jung's avatar
Ralf Jung committed
# Make sure we got the right set of repositories registered
if echo "$@" | fgrep "dev"; then
    # We are compiling against a dev version of something.  Get ourselves the dev repositories.
    test -d "$OPAMROOT/repo/coq-extra-dev" || run_and_print opam repo add coq-extra-dev https://coq.inria.fr/opam/extra-dev -p 0
    test -d "$OPAMROOT/repo/coq-core-dev" || run_and_print opam repo add coq-core-dev https://coq.inria.fr/opam/core-dev -p 5
else
    # No dev version, make sure we do not have the dev repositories.
    test -d "$OPAMROOT/repo/coq-extra-dev" && run_and_print opam repo remove coq-extra-dev
    test -d "$OPAMROOT/repo/coq-core-dev" && run_and_print opam repo remove coq-core-dev
fi
test -d "$OPAMROOT/repo/coq-released" || run_and_print opam repo add coq-released https://coq.inria.fr/opam/released -p 10
test -d "$OPAMROOT/repo/iris-dev" || run_and_print opam repo add iris-dev https://gitlab.mpi-sws.org/FP/opam-dev.git -p 20
echo

# We really want to run all of the following in one opam transaction, but due to opam limitations,
# that is not currently possible.
Ralf Jung's avatar
Ralf Jung committed

# Install fixed versions of some dependencies.
Ralf Jung's avatar
Ralf Jung committed
echo
Ralf Jung's avatar
Ralf Jung committed
while (( "$#" )); do # while there are arguments left
    PACKAGE="$1" ; shift
    VERSION="$1" ; shift
Ralf Jung's avatar
Ralf Jung committed
    # Check if the pin is already set
    if opam pin list | fgrep "$PACKAGE.$VERSION " > /dev/null; then
        echo "[opam-ci] $PACKAGE already pinned to $VERSION"
    else
        echo "[opam-ci] Pinning $PACKAGE to $VERSION"
Ralf Jung's avatar
Ralf Jung committed
        run_and_print opam pin add -y -k version "$PACKAGE" "$VERSION"
Ralf Jung's avatar
Ralf Jung committed
    fi
Ralf Jung's avatar
Ralf Jung committed
done

# Upgrade cached things.
echo
echo "[opam-ci] Upgrading opam"
run_and_print opam upgrade -y

# Install build-dependencies.
Ralf Jung's avatar
Ralf Jung committed
echo
echo "[opam-ci] Installing build-dependencies"
make build-dep OPAMFLAGS=-y
Ralf Jung's avatar
Ralf Jung committed

# done
echo
coqc -v