From e955ae9000a78eeb3f391938c9273ffca01f02bb Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 4 Sep 2016 13:29:11 +0200 Subject: travis: rebuild website for updated docs on push --- TOOLS/travis-rebuild-website | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 TOOLS/travis-rebuild-website (limited to 'TOOLS/travis-rebuild-website') diff --git a/TOOLS/travis-rebuild-website b/TOOLS/travis-rebuild-website new file mode 100755 index 0000000000..8d04fb506c --- /dev/null +++ b/TOOLS/travis-rebuild-website @@ -0,0 +1,24 @@ +#!/bin/sh + +if [ "x$LIBAV" != "xffmpeg-git" ] || [ "x$TRAVIS_OS_NAME" != "xlinux" ]; then + # trigger build only on one of the matrix nodes + exit; +fi + +if [ "x$TRAVIS_BRANCH" != "xmaster" ]; then + # only rebuild website with pushes to master + exit; +fi + +body='{ +"request": { + "branch":"master" +}}' + +curl -s -X POST \ +-H "Content-Type: application/json" \ +-H "Accept: application/json" \ +-H "Travis-API-Version: 3" \ +-H "Authorization: token $WEBSITE_TRAVIS_TOKEN" \ +-d "$body" \ +https://api.travis-ci.org/repo/mpv-player%2Fmpv.io/requests -- cgit v1.2.3