web/_scripts/travis/cibuild.sh

23 lines
470 B
Bash
Raw Normal View History

#!/bin/bash
# Travis CI build jobs.
2020-01-02 16:17:49 +03:00
# v2.0
# https://github.com/cotes2020/jekyll-theme-chirpy
# © 2019 Cotes Chung
# Published under MIT License
if [[ $TRAVIS_PULL_REQUEST = "false" ]]; then # triggered by author
2020-01-20 19:32:20 +03:00
git clone https://${GH_PAT}@github.com/${GH_USER}/${BUILDER_REPO}.git \
../${BUILDER_REPO} --depth=1 -q
2020-01-20 19:32:20 +03:00
cp -r ../${BUILDER_REPO}/framework/* .
bash _cibuild.sh
else # triggered by Pull Request
2020-01-20 19:32:20 +03:00
bash tools/build.sh
bash tools/test.sh
2019-12-22 21:35:58 +03:00
fi