2016-07-19 19:25:46 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Automatically deploy on gh-pages
|
|
|
|
|
2018-05-16 16:55:21 +00:00
|
|
|
set -ex
|
2016-07-19 19:25:46 +00:00
|
|
|
|
|
|
|
SOURCE_BRANCH="master"
|
|
|
|
TARGET_BRANCH="gh-pages"
|
|
|
|
|
|
|
|
# Save some useful information
|
|
|
|
REPO=$(git config remote.origin.url)
|
|
|
|
SSH_REPO=${REPO/https:\/\/github.com\//git@github.com:}
|
|
|
|
SHA=$(git rev-parse --verify HEAD)
|
|
|
|
|
|
|
|
# Clone the existing gh-pages for this repo into out/
|
|
|
|
(
|
|
|
|
git clone "$REPO" out
|
|
|
|
cd out
|
|
|
|
git checkout $TARGET_BRANCH
|
|
|
|
)
|
|
|
|
|
2018-04-11 06:07:21 +00:00
|
|
|
echo "Removing the current docs for master"
|
2016-07-19 19:25:46 +00:00
|
|
|
rm -rf out/master/ || exit 0
|
|
|
|
|
2018-04-11 06:07:21 +00:00
|
|
|
echo "Making the docs for master"
|
2016-07-19 19:25:46 +00:00
|
|
|
mkdir out/master/
|
|
|
|
cp util/gh-pages/index.html out/master
|
2016-07-19 19:57:40 +00:00
|
|
|
python ./util/export.py out/master/lints.json
|
2016-07-19 19:25:46 +00:00
|
|
|
|
|
|
|
if [ -n "$TRAVIS_TAG" ]; then
|
2018-04-11 06:07:21 +00:00
|
|
|
echo "Save the doc for the current tag ($TRAVIS_TAG) and point current/ to it"
|
2016-07-19 19:25:46 +00:00
|
|
|
cp -r out/master "out/$TRAVIS_TAG"
|
|
|
|
rm -f out/current
|
|
|
|
ln -s "$TRAVIS_TAG" out/current
|
|
|
|
fi
|
|
|
|
|
2017-08-03 19:17:12 +00:00
|
|
|
# Generate version index that is shown as root index page
|
|
|
|
(
|
|
|
|
cp util/gh-pages/versions.html out/index.html
|
|
|
|
|
|
|
|
cd out
|
|
|
|
python -c '\
|
|
|
|
import os, json;\
|
|
|
|
print json.dumps([\
|
|
|
|
dir for dir in os.listdir(".")\
|
|
|
|
if not dir.startswith(".") and os.path.isdir(dir)\
|
|
|
|
])' > versions.json
|
|
|
|
)
|
|
|
|
|
2016-07-19 19:25:46 +00:00
|
|
|
# Pull requests and commits to other branches shouldn't try to deploy, just build to verify
|
|
|
|
if [ "$TRAVIS_PULL_REQUEST" != "false" ] || [ "$TRAVIS_BRANCH" != "$SOURCE_BRANCH" ]; then
|
2016-08-17 13:25:21 +00:00
|
|
|
# Tags should deploy
|
|
|
|
if [ -z "$TRAVIS_TAG" ]; then
|
|
|
|
echo "Generated, won't push"
|
|
|
|
exit 0
|
|
|
|
fi
|
2016-07-19 19:25:46 +00:00
|
|
|
fi
|
|
|
|
|
2016-07-19 20:42:09 +00:00
|
|
|
# Get the deploy key by using Travis's stored variables to decrypt deploy_key.enc
|
2016-07-19 21:00:36 +00:00
|
|
|
ENCRYPTION_LABEL=e3a2d77100be
|
2016-07-19 20:42:09 +00:00
|
|
|
ENCRYPTED_KEY_VAR="encrypted_${ENCRYPTION_LABEL}_key"
|
|
|
|
ENCRYPTED_IV_VAR="encrypted_${ENCRYPTION_LABEL}_iv"
|
|
|
|
ENCRYPTED_KEY=${!ENCRYPTED_KEY_VAR}
|
|
|
|
ENCRYPTED_IV=${!ENCRYPTED_IV_VAR}
|
2016-07-19 20:48:52 +00:00
|
|
|
openssl aes-256-cbc -K "$ENCRYPTED_KEY" -iv "$ENCRYPTED_IV" -in .github/deploy_key.enc -out .github/deploy_key -d
|
|
|
|
chmod 600 .github/deploy_key
|
2016-07-19 20:42:09 +00:00
|
|
|
eval $(ssh-agent -s)
|
2016-07-19 20:48:52 +00:00
|
|
|
ssh-add .github/deploy_key
|
2016-07-19 20:42:09 +00:00
|
|
|
|
2016-07-19 19:25:46 +00:00
|
|
|
# Now let's go have some fun with the cloned repo
|
|
|
|
cd out
|
|
|
|
git config user.name "Travis CI"
|
|
|
|
git config user.email "travis@ci.invalid"
|
|
|
|
|
2016-07-19 21:08:41 +00:00
|
|
|
if [ -z "$(git diff --exit-code)" ]; then
|
2016-07-19 19:25:46 +00:00
|
|
|
echo "No changes to the output on this push; exiting."
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
git add .
|
|
|
|
git commit -m "Automatic deploy to GitHub Pages: ${SHA}"
|
|
|
|
|
|
|
|
# Now that we're all set up, we can push.
|
|
|
|
git push "$SSH_REPO" "$TARGET_BRANCH"
|