aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-formal-topology.sh
blob: ecb36349fb20b7aac67bda0d234dc293befcace0 (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
27
28
#!/usr/bin/env bash

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

math_classes_CI_DIR=${CI_BUILD_DIR}/math-classes

Corn_CI_DIR=${CI_BUILD_DIR}/corn

formal_topology_CI_DIR=${CI_BUILD_DIR}/formal-topology

# Setup Math-Classes

git_checkout ${math_classes_CI_BRANCH} ${math_classes_CI_GITURL} ${math_classes_CI_DIR}

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

# Setup Corn

git_checkout ${Corn_CI_BRANCH} ${Corn_CI_GITURL} ${Corn_CI_DIR}

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

# Setup formal-topology

git_checkout ${formal_topology_CI_BRANCH} ${formal_topology_CI_GITURL} ${formal_topology_CI_DIR}

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