aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/ci/ci-template.sh
blob: 700105aed4014e882377253fa80190e7b360797e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

ci_dir="$(dirname "$0")"
source ${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 -j ${NJOBS} )