mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-17 06:28:42 +00:00
Add Post-Success script to build clippy-service
This commit is contained in:
parent
94f10ee69a
commit
54c8c23a74
1 changed files with 22 additions and 0 deletions
22
.travis.yml
22
.travis.yml
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue