From 332d85dc6c69fbcc2aae7b9d4af975fb43769b05 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Tue, 30 May 2017 23:43:09 -0400 Subject: Add coq-dpdgraph CI --- dev/ci/ci-basic-overlay.sh | 6 ++++++ dev/ci/ci-coq-dpdgraph.sh | 10 ++++++++++ 2 files changed, 16 insertions(+) create mode 100755 dev/ci/ci-coq-dpdgraph.sh (limited to 'dev') diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index a6972c9500..8bd68f4ee6 100644 --- a/dev/ci/ci-basic-overlay.sh +++ b/dev/ci/ci-basic-overlay.sh @@ -112,6 +112,12 @@ : ${formal_topology_CI_BRANCH:=ci} : ${formal_topology_CI_GITURL:=https://github.com/bmsherman/topology.git} +######################################################################## +# coq-dpdgraph +######################################################################## +: ${coq_dpdgraph_CI_BRANCH:=master} +: ${coq_dpdgraph_CI_GITURL:=https://github.com/Karmaki/coq-dpdgraph.git} + ######################################################################## # CoLoR ######################################################################## diff --git a/dev/ci/ci-coq-dpdgraph.sh b/dev/ci/ci-coq-dpdgraph.sh new file mode 100755 index 0000000000..44b0e4c4d5 --- /dev/null +++ b/dev/ci/ci-coq-dpdgraph.sh @@ -0,0 +1,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 | tee tmp.log) && (if grep DIFFERENCES tmp.log ; then exit 1 ; else exit 0 ; fi) ) -- cgit v1.2.3 From f371ead0234693ab8f68591d160cc2ee4dd8509f Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Fri, 2 Jun 2017 20:12:23 -0400 Subject: Add an overlay for coq-dpdgraph for 8.7 --- dev/ci/ci-basic-overlay.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'dev') diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index 8bd68f4ee6..73a3ba04f2 100644 --- a/dev/ci/ci-basic-overlay.sh +++ b/dev/ci/ci-basic-overlay.sh @@ -115,8 +115,11 @@ ######################################################################## # coq-dpdgraph ######################################################################## -: ${coq_dpdgraph_CI_BRANCH:=master} -: ${coq_dpdgraph_CI_GITURL:=https://github.com/Karmaki/coq-dpdgraph.git} +# Temporary overlay +: ${coq_dpdgraph_CI_BRANCH:=trunk+clobber-test-suite} +: ${coq_dpdgraph_CI_GITURL:=https://github.com/JasonGross/coq-dpdgraph.git} +#: ${coq_dpdgraph_CI_BRANCH:=master} +#: ${coq_dpdgraph_CI_GITURL:=https://github.com/Karmaki/coq-dpdgraph.git} ######################################################################## # CoLoR -- cgit v1.2.3 From 29ba5cdc0ea31ea62c727f8dcf53d2c805d4bcb3 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Thu, 8 Jun 2017 13:07:00 -0400 Subject: Remove coq-dpdgraph overlay --- dev/ci/ci-basic-overlay.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'dev') diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index 73a3ba04f2..81f4c87177 100644 --- a/dev/ci/ci-basic-overlay.sh +++ b/dev/ci/ci-basic-overlay.sh @@ -115,11 +115,8 @@ ######################################################################## # coq-dpdgraph ######################################################################## -# Temporary overlay -: ${coq_dpdgraph_CI_BRANCH:=trunk+clobber-test-suite} -: ${coq_dpdgraph_CI_GITURL:=https://github.com/JasonGross/coq-dpdgraph.git} -#: ${coq_dpdgraph_CI_BRANCH:=master} -#: ${coq_dpdgraph_CI_GITURL:=https://github.com/Karmaki/coq-dpdgraph.git} +: ${coq_dpdgraph_CI_BRANCH:=coq-trunk} +: ${coq_dpdgraph_CI_GITURL:=https://github.com/Karmaki/coq-dpdgraph.git} ######################################################################## # CoLoR -- cgit v1.2.3 From 55ffdf526f8dbf99a88a05910e646446f6bb3421 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Thu, 8 Jun 2017 13:08:13 -0400 Subject: Mirror dpdgraph's travis test more accurately --- dev/ci/ci-coq-dpdgraph.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev') diff --git a/dev/ci/ci-coq-dpdgraph.sh b/dev/ci/ci-coq-dpdgraph.sh index 44b0e4c4d5..e8018158bf 100755 --- a/dev/ci/ci-coq-dpdgraph.sh +++ b/dev/ci/ci-coq-dpdgraph.sh @@ -7,4 +7,4 @@ 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 | tee tmp.log) && (if grep DIFFERENCES tmp.log ; then exit 1 ; else exit 0 ; fi) ) +( 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) ) -- cgit v1.2.3