aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-formal-topology.sh
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-04-29 13:07:45 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-05-01 13:17:05 -0400
commit8dc2adfd102185c6c3c4b61709f2b55aefab2641 (patch)
tree26faef398b63f3a8ddc4f32634875c8405d2446c /dev/ci/ci-formal-topology.sh
parent8511d1d9d903e419543e39eca83c64171da2663b (diff)
Add bmsherman/topology to the ci
This development of @bmsherman tests universe polymorphism and setoid rewriting in type, and should build with v8.6 and trunk.
Diffstat (limited to 'dev/ci/ci-formal-topology.sh')
-rwxr-xr-xdev/ci/ci-formal-topology.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/dev/ci/ci-formal-topology.sh b/dev/ci/ci-formal-topology.sh
new file mode 100755
index 000000000..ecb36349f
--- /dev/null
+++ b/dev/ci/ci-formal-topology.sh
@@ -0,0 +1,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} )