aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-unimath.sh
blob: 15e619acbbf5ad206d2b8148d9a047b8fc7a341b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

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

UniMath_CI_BRANCH=master
UniMath_CI_GITURL=https://github.com/UniMath/UniMath.git

git_checkout ${UniMath_CI_BRANCH} ${UniMath_CI_GITURL} UniMath

( cd UniMath                                  && \
  sed -i.bak '/Folds/d'              Makefile && \
  sed -i.bak '/HomologicalAlgebra/d' Makefile && \
  make -j ${NJOBS} BUILD_COQ=no )