aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/ci-template.sh
diff options
context:
space:
mode:
authorThéo Zimmermann2018-08-28 18:43:03 +0200
committerThéo Zimmermann2018-08-31 14:05:10 +0200
commit04542c3288b838c57253f2c315f1dab028412a40 (patch)
treef33c7f03b94267c01c48b566a08c822f190e9ac7 /dev/ci/ci-template.sh
parente8b1f95a5bf8091b25f82266d0ff084d722ed6c5 (diff)
Download tarball instead of cloning external projects (when $CI is set).
This allows to use fixed commits and not just branches or tags. We keep using git clone when $FORCE_GIT is set (for projects on gforge.inria.fr and projects pulling dependencies through git submodules). fiat-parsers also calls git submodule, but inside its own Makefile.
Diffstat (limited to 'dev/ci/ci-template.sh')
-rwxr-xr-xdev/ci/ci-template.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/dev/ci/ci-template.sh b/dev/ci/ci-template.sh
deleted file mode 100755
index e77a553047..0000000000
--- a/dev/ci/ci-template.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-
-ci_dir="$(dirname "$0")"
-. "${ci_dir}/ci-common.sh"
-
-Template_CI_BRANCH=master
-Template_CI_GITURL=https://github.com/Template/Template
-Template_CI_DIR="${CI_BUILD_DIR}/Template"
-
-git_checkout "${Template_CI_BRANCH}" "${Template_CI_GITURL}" "${Template_CI_DIR}"
-
-( cd "${Template_CI_DIR}" && make )