blob: ff5935d4c78222a5556f915ec707b1997adae40f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
source ${ci_dir}/ci-common.sh
fi
bignums_CI_DIR=${CI_BUILD_DIR}/Bignums
git_checkout ${bignums_CI_BRANCH} ${bignums_CI_GITURL} ${bignums_CI_DIR}
( cd ${bignums_CI_DIR} && make -j ${NJOBS} && make install)
|