aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-quickchick.sh
blob: fc39e2685d150fd403300a3d25b9134d4848b9c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env bash

ci_dir="$(dirname "$0")"

# This script could be included inside other ones
# Let's avoid to source ci-common twice in this case
if [ -z "${CI_BUILD_DIR}" ];
then
    . "${ci_dir}/ci-common.sh"
fi

quickchick_CI_DIR="${CI_BUILD_DIR}/Quickchick"

install_ssreflect

git_checkout "${quickchick_CI_BRANCH}" "${quickchick_CI_GITURL}" "${quickchick_CI_DIR}"

( cd "${quickchick_CI_DIR}" && make && make install)