summaryrefslogtreecommitdiffstats
path: root/TOOLS/travis-rebuild-website
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/travis-rebuild-website')
-rwxr-xr-xTOOLS/travis-rebuild-website24
1 files changed, 24 insertions, 0 deletions
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