Skip to content
Permalink
Browse files

MNT: Refresh gh-pages deploy script

  • Loading branch information...
kernc committed Jan 7, 2019
1 parent f3bdc3b commit 76deee9a3453f522b9b5dd25952c8ba23d83dad5
Showing with 22 additions and 23 deletions.
  1. +1 −1 .travis.yml
  2. +21 −0 .travis/deploy-gh-pages.sh
  3. +0 −22 .travis/man2html.sh
@@ -36,4 +36,4 @@ script:
- xvfb-run make test - xvfb-run make test


after_success: after_success:
- if [ "$GH_PASSWORD" ] && [ $CC = "gcc" ]; then cd ..; .travis/man2html.sh; fi - if [ "$TRAVIS_BRANCH" = "$TRAVIS_TAG" ] && [ $CC = "gcc" ]; then cd ..; .travis/deploy-gh-pages.sh; fi
@@ -0,0 +1,21 @@
#!/bin/bash

# If man had changed, rebuild its HTML and push to gh-pages

set -eu

[ "$GH_PASSWORD" ] || exit 12

head=$(git rev-parse HEAD)

git clone -b gh-pages "https://kernc:$GH_PASSWORD@github.com/$TRAVIS_REPO_SLUG.git" gh-pages
groff -wall -mandoc -Thtml doc/xsuspender.1 > gh-pages/xsuspender.1.html
cd gh-pages

ANALYTICS="<script>window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;ga('create','UA-43663477-3','auto');ga('require','cleanUrlTracker',{indexFilename:'index.html',trailingSlash:'add'});ga('require','outboundLinkTracker',{events:['click','auxclick','contextmenu']});ga('require', 'maxScrollTracker');ga('require', 'pageVisibilityTracker');ga('send', 'pageview');setTimeout(function(){ga('send','event','pageview','view')},15000);</script><script async src='https://www.google-analytics.com/analytics.js'></script><script async src='https://cdnjs.cloudflare.com/ajax/libs/autotrack/2.4.1/autotrack.js'></script>"
sed -i "s#</body>#$ANALYTICS</body>#i" xsuspender.1.html

git add *
git diff --staged --quiet && echo "$0: No changes to commit." && exit 0
git commit -am "CI: Update xsuspender.1.html from $TRAVIS_TAG ($head)"
git push

This file was deleted.

Oops, something went wrong.

0 comments on commit 76deee9

Please sign in to comment.
You can’t perform that action at this time.