aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/ci-iris-coq.sh
blob: 10f2c2b4bdccbf54f5caf792d6398a2f8de48259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env bash

ci_dir="$(dirname "$0")"
source ${ci_dir}/ci-common.sh

stdpp_CI_BRANCH=master
stdpp_CI_GITURL=https://gitlab.mpi-sws.org/robbertkrebbers/coq-stdpp.git
stdpp_CI_DIR=${CI_BUILD_DIR}/coq-stdpp

Iris_CI_BRANCH=master
Iris_CI_GITURL=https://gitlab.mpi-sws.org/FP/iris-coq.git
Iris_CI_DIR=${CI_BUILD_DIR}/iris-coq

install_ssreflect

# Setup stdpp

git_checkout ${stdpp_CI_BRANCH} ${stdpp_CI_GITURL} ${stdpp_CI_DIR}

( cd ${stdpp_CI_DIR} && make -j ${NJOBS} && make install )

# Setup Iris

git_checkout ${Iris_CI_BRANCH} ${Iris_CI_GITURL} ${Iris_CI_DIR}

( cd ${Iris_CI_DIR} && make -j ${NJOBS} )