2015-04-13 18:51:16 +00:00
|
|
|
language: rust
|
2015-05-20 07:04:45 +00:00
|
|
|
rust: nightly
|
2015-04-13 18:51:16 +00:00
|
|
|
sudo: false
|
|
|
|
|
2016-03-29 13:15:58 +00:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
# TRAVIS_TOKEN_CLIPPY_SERVICE
|
|
|
|
secure: dj8SwwuRGuzbo2wZq5z7qXIf7P3p7cbSGs1I3pvXQmB6a58gkLiRn/qBcIIegdt/nzXs+Z0Nug+DdesYVeUPxk1hIa/eeU8p6mpyTtZ+30H4QVgVzd0VCthB5F/NUiPVxTgpGpEgCM9/p72xMwTn7AAJfsGqk7AJ4FS5ZZKhqFI=
|
|
|
|
|
2016-05-06 13:32:34 +00:00
|
|
|
install:
|
|
|
|
- . $HOME/.nvm/nvm.sh
|
|
|
|
- nvm install stable
|
|
|
|
- nvm use stable
|
|
|
|
- npm install remark remark-lint
|
|
|
|
|
2015-04-13 18:51:16 +00:00
|
|
|
script:
|
2016-05-06 13:32:34 +00:00
|
|
|
- remark -f README.md -u remark-lint > /dev/null
|
2015-08-13 08:32:35 +00:00
|
|
|
- python util/update_lints.py -c
|
2016-03-07 17:40:13 +00:00
|
|
|
- cargo build --features debugging
|
2016-03-15 09:11:56 +00:00
|
|
|
- rm -rf target/ Cargo.lock
|
2015-12-05 08:53:00 +00:00
|
|
|
- cargo test --features debugging
|
2016-03-07 18:08:46 +00:00
|
|
|
|
2016-04-14 23:41:06 +00:00
|
|
|
after_success:
|
|
|
|
# only test regex_macros if it compiles
|
|
|
|
- |
|
2016-04-14 19:24:46 +00:00
|
|
|
#!/bin/bash
|
|
|
|
cargo test --no-run --features 'debugging test-regex_macros'
|
2016-04-14 23:41:06 +00:00
|
|
|
if [ "$?" != 101 ]; then
|
|
|
|
cargo test --features 'debugging test-regex_macros' compile_test
|
2016-04-14 19:24:46 +00:00
|
|
|
fi
|
2016-03-29 13:15:58 +00:00
|
|
|
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
|
2016-03-29 08:24:35 +00:00
|
|
|
- |
|
|
|
|
#!/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
|