mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
I fail at YAML
This commit is contained in:
parent
d2738e345a
commit
e457cd9c26
1 changed files with 8 additions and 11 deletions
19
.travis.yml
19
.travis.yml
|
@ -42,26 +42,23 @@ script:
|
|||
- cd clippy_lints && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ..
|
||||
- set +e
|
||||
|
||||
after_success:
|
||||
- |
|
||||
after_success: |
|
||||
if [ $(uname) == Linux ]; then
|
||||
./.github/deploy.sh
|
||||
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
|
||||
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
|
||||
#!/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/gnunicorn%2Fclippy-service/requests
|
||||
|
||||
-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/gnunicorn%2Fclippy-service/requests
|
||||
else
|
||||
echo "Ignored"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue