blob: 25da01a822474ec4319e53f29d9f82a4bafdbbe3 (
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 )
|