Add Post-Success script to build clippy-service

This commit is contained in:
Benjamin Kampmann 2016-03-29 10:24:35 +02:00
parent 94f10ee69a
commit 54c8c23a74
1 changed files with 22 additions and 0 deletions

View File

@ -10,3 +10,25 @@ script:
# only test regex_macros if it compiles
- if [[ "$(cargo build --features 'debugging test-regex_macros')" = 101 ]]; then cargo test --features 'debugging test-regex_macros'; fi
# trigger rebuild of the clippy-service
after_success:
- |
#!/bin/bash
set -e
if [ "$TRAVIS_PULL_REQUEST" == "false" ] &&
[ "$TRAVIS_REPO_SLUG" == "Manishearth/rust-clippy" ] &&
[ "$TRAVIS_BRANCH" == "master" ] &&
[ "$TRAVIS_TOKEN_CLIPPY_SERVICE" != "" ] ; then
curl -s -X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Travis-API-Version: 3" \
-H "Authorization: token $TRAVIS_TOKEN_CLIPPY_SERVICE" \
-d "{ \"request\": { \"branch\":\"master\" }}" \
https://api.travis-ci.org/repo/ligthyear%2Fclippy-service/requests
else
echo "Ignored"
fi