summaryrefslogtreecommitdiffstats
path: root/TOOLS/travis-rebuild-website
blob: 61548cefbd154df7682c1fb0011121f33dca813d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/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

TRAVIS_COMMIT_RANGE=${TRAVIS_COMMIT_RANGE:-HEAD^..}
if git diff --quiet --name-only --exit-code "$TRAVIS_COMMIT_RANGE" DOCS/ VERSION; then
  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