37 lines
780 B
Bash
37 lines
780 B
Bash
#!/bin/bash
|
|
|
|
# Travis CI build jobs.
|
|
# 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
|
|
|
|
BUILDER=../blog-builder
|
|
|
|
git clone https://${GH_TOKEN}@github.com/cotes2020/blog-builder.git \
|
|
$BUILDER --depth=1 -q
|
|
|
|
cp -r $BUILDER/framework/* .
|
|
bash _cibuild.sh
|
|
|
|
else # triggered by Pull Request
|
|
|
|
SAFE_DOMAIN="cdn.jsdelivr.net"
|
|
|
|
python _scripts/py/init_all.py
|
|
|
|
build_cmd="bundle exec jekyll build"
|
|
|
|
echo "\$ $build_cmd"
|
|
eval $build_cmd
|
|
|
|
bundle exec htmlproofer _site/ \
|
|
--disable-external \
|
|
--check-html \
|
|
--empty_alt_ignore \
|
|
--allow_hash_href \
|
|
--url_ignore $SAFE_DOMAIN
|
|
|
|
fi
|