aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-coq-dpdgraph.sh
blob: e8018158bf457a0cc6110523e6acc296d6af879b (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

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

coq_dpdgraph_CI_DIR=${CI_BUILD_DIR}/coq-dpdgraph

git_checkout ${coq_dpdgraph_CI_BRANCH} ${coq_dpdgraph_CI_GITURL} ${coq_dpdgraph_CI_DIR}

( cd ${coq_dpdgraph_CI_DIR} && autoconf && ./configure && make -j ${NJOBS} && make tests && (make tests | tee tmp.log) && (if grep DIFFERENCES tmp.log ; then exit 1 ; else exit 0 ; fi) )