From 440a00f20b9768e769dabe399bef16074f30f7cd Mon Sep 17 00:00:00 2001 From: Théo Zimmermann Date: Thu, 16 Aug 2018 11:31:46 +0200 Subject: [ci] Fix QuickChick by adding new simple-io dependency. --- Makefile.ci | 3 ++- dev/ci/ci-basic-overlay.sh | 6 ++++++ dev/ci/ci-simple-io.sh | 10 ++++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100755 dev/ci/ci-simple-io.sh diff --git a/Makefile.ci b/Makefile.ci index 306471d1d0..e86504b76d 100644 --- a/Makefile.ci +++ b/Makefile.ci @@ -36,6 +36,7 @@ CI_TARGETS=ci-bedrock2 \ ci-pidetop \ ci-quickchick \ ci-sf \ + ci-simple-io \ ci-tlc \ ci-unimath \ ci-vst @@ -54,7 +55,7 @@ ci-math-classes: ci-bignums ci-corn: ci-math-classes -ci-quickchick: ci-ext-lib +ci-quickchick: ci-ext-lib ci-simple-io ci-formal-topology: ci-corn diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index 28321d13e2..a77eb15e92 100755 --- a/dev/ci/ci-basic-overlay.sh +++ b/dev/ci/ci-basic-overlay.sh @@ -183,6 +183,12 @@ : "${ext_lib_CI_BRANCH:=master}" : "${ext_lib_CI_GITURL:=https://github.com/coq-ext-lib/coq-ext-lib}" +######################################################################## +# simple-io +######################################################################## +: "${simple_io_CI_BRANCH:=master}" +: "${simple_io_CI_GITURL:=https://github.com/Lysxia/coq-simple-io}" + ######################################################################## # quickchick ######################################################################## diff --git a/dev/ci/ci-simple-io.sh b/dev/ci/ci-simple-io.sh new file mode 100755 index 0000000000..66f9801b3c --- /dev/null +++ b/dev/ci/ci-simple-io.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +ci_dir="$(dirname "$0")" +. "${ci_dir}/ci-common.sh" + +simple_io_CI_DIR="${CI_BUILD_DIR}/simple-io" + +git_checkout "${simple_io_CI_BRANCH}" "${simple_io_CI_GITURL}" "${simple_io_CI_DIR}" + +( cd "${simple_io_CI_DIR}" && make build && make install) -- cgit v1.2.3