2015-04-13 18:51:16 +00:00
|
|
|
language: rust
|
2017-01-05 18:26:00 +00:00
|
|
|
|
2015-05-20 07:04:45 +00:00
|
|
|
rust: nightly
|
2017-01-05 18:26:00 +00:00
|
|
|
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2015-04-13 18:51:16 +00:00
|
|
|
sudo: false
|
2016-08-08 15:53:07 +00:00
|
|
|
|
2016-08-08 15:45:54 +00:00
|
|
|
cache:
|
|
|
|
cargo: true
|
|
|
|
directories:
|
|
|
|
- clippy_lints/target
|
2015-04-13 18:51:16 +00:00
|
|
|
|
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
|
2016-06-13 10:09:14 +00:00
|
|
|
- npm install remark-cli remark-lint
|
2016-12-20 09:43:59 +00:00
|
|
|
# || true, because we cache rustfmt and don't want to crash on the next travis run
|
|
|
|
# due to rustfmt already being installed
|
|
|
|
- (cargo install rustfmt || true)
|
2016-05-06 13:32:34 +00:00
|
|
|
|
2015-04-13 18:51:16 +00:00
|
|
|
script:
|
2017-01-06 11:48:41 +00:00
|
|
|
- PATH=$PATH:./node_modules/.bin
|
2016-05-06 14:22:17 +00:00
|
|
|
- remark -f README.md > /dev/null
|
2015-08-13 08:32:35 +00:00
|
|
|
- python util/update_lints.py -c
|
2016-09-30 22:38:01 +00:00
|
|
|
- set -e
|
2016-12-21 12:21:35 +00:00
|
|
|
- PATH=$PATH:~/.cargo/bin cargo fmt -- --write-mode=diff
|
|
|
|
- cd clippy_lints && PATH=$PATH:~/.cargo/bin cargo fmt -- --write-mode=diff && cd ..
|
2016-03-07 17:40:13 +00:00
|
|
|
- cargo build --features debugging
|
2015-12-05 08:53:00 +00:00
|
|
|
- cargo test --features debugging
|
2016-06-22 08:36:18 +00:00
|
|
|
- mkdir -p ~/rust/cargo/bin
|
2016-06-21 15:20:08 +00:00
|
|
|
- cp target/debug/cargo-clippy ~/rust/cargo/bin/cargo-clippy
|
2016-06-22 08:37:08 +00:00
|
|
|
- PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy
|
2016-06-22 12:37:08 +00:00
|
|
|
- cd clippy_lints && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ..
|
2017-01-06 16:52:56 +00:00
|
|
|
- set +e
|
2016-03-07 18:08:46 +00:00
|
|
|
|
2017-01-08 16:35:49 +00:00
|
|
|
after_success: |
|
2017-01-09 15:45:33 +00:00
|
|
|
#!/bin/bash
|
2017-01-08 16:33:19 +00:00
|
|
|
if [ $(uname) == Linux ]; then
|
2017-01-08 16:31:08 +00:00
|
|
|
./.github/deploy.sh
|
2017-01-08 16:35:49 +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
|
|
|
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 \
|
2017-01-08 16:35:49 +00:00
|
|
|
-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
|
2016-03-29 08:24:35 +00:00
|
|
|
else
|
|
|
|
echo "Ignored"
|
|
|
|
fi
|
2017-01-07 14:15:20 +00:00
|
|
|
set +e
|
2017-01-08 16:31:08 +00:00
|
|
|
fi
|