2015-04-13 20:51:16 +02:00
|
|
|
language: rust
|
2017-01-05 19:26:00 +01:00
|
|
|
|
2015-05-20 09:04:45 +02:00
|
|
|
rust: nightly
|
2017-01-05 19:26:00 +01:00
|
|
|
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2015-04-13 20:51:16 +02:00
|
|
|
sudo: false
|
2016-08-08 17:53:07 +02:00
|
|
|
|
2016-03-29 15:15:58 +02:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
# TRAVIS_TOKEN_CLIPPY_SERVICE
|
2017-08-01 15:19:12 +02:00
|
|
|
- secure: dj8SwwuRGuzbo2wZq5z7qXIf7P3p7cbSGs1I3pvXQmB6a58gkLiRn/qBcIIegdt/nzXs+Z0Nug+DdesYVeUPxk1hIa/eeU8p6mpyTtZ+30H4QVgVzd0VCthB5F/NUiPVxTgpGpEgCM9/p72xMwTn7AAJfsGqk7AJ4FS5ZZKhqFI=
|
|
|
|
- RUST_BACKTRACE=1
|
2016-03-29 15:15:58 +02:00
|
|
|
|
2016-05-06 15:32:34 +02:00
|
|
|
install:
|
|
|
|
- . $HOME/.nvm/nvm.sh
|
|
|
|
- nvm install stable
|
|
|
|
- nvm use stable
|
2016-06-13 12:09:14 +02:00
|
|
|
- npm install remark-cli remark-lint
|
2016-05-06 15:32:34 +02:00
|
|
|
|
2015-04-13 20:51:16 +02:00
|
|
|
script:
|
2017-01-06 12:48:41 +01:00
|
|
|
- PATH=$PATH:./node_modules/.bin
|
2016-05-06 16:22:17 +02:00
|
|
|
- remark -f README.md > /dev/null
|
2016-10-01 00:38:01 +02:00
|
|
|
- set -e
|
2016-03-07 18:40:13 +01:00
|
|
|
- cargo build --features debugging
|
2015-12-05 09:53:00 +01:00
|
|
|
- cargo test --features debugging
|
2016-06-22 10:36:18 +02:00
|
|
|
- mkdir -p ~/rust/cargo/bin
|
2017-08-02 17:24:07 +02:00
|
|
|
- cp target/debug/cargo-clippy ~/rust/cargo/bin/cargo-clippy
|
2017-08-18 19:31:51 +02:00
|
|
|
- PATH=$PATH:~/rust/cargo/bin cargo clippy --all -- -D clippy
|
2017-07-27 09:04:17 +02:00
|
|
|
- cd clippy_workspace_tests && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ..
|
|
|
|
- cd clippy_workspace_tests/src && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ../..
|
|
|
|
- cd clippy_workspace_tests/subcrate && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ../..
|
|
|
|
- cd clippy_workspace_tests/subcrate/src && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ../../..
|
2017-07-31 13:10:04 +02:00
|
|
|
- PATH=$PATH:~/rust/cargo/bin cargo clippy --manifest-path=clippy_workspace_tests/Cargo.toml -- -D clippy
|
2017-07-29 00:22:31 +02:00
|
|
|
- cd clippy_workspace_tests/subcrate && PATH=$PATH:~/rust/cargo/bin cargo clippy --manifest-path=../Cargo.toml -- -D clippy && cd ../..
|
2017-01-06 17:52:56 +01:00
|
|
|
- set +e
|
2016-03-07 19:08:46 +01:00
|
|
|
|
2017-01-08 17:35:49 +01:00
|
|
|
after_success: |
|
2017-01-09 16:45:33 +01:00
|
|
|
#!/bin/bash
|
2017-01-08 17:33:19 +01:00
|
|
|
if [ $(uname) == Linux ]; then
|
2017-01-08 17:31:08 +01:00
|
|
|
./.github/deploy.sh
|
2017-01-08 17:35:49 +01:00
|
|
|
# trigger rebuild of the clippy-service, to keep it up to date with clippy itself
|
2016-03-29 10:24:35 +02: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 17:35:49 +01: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 10:24:35 +02:00
|
|
|
else
|
|
|
|
echo "Ignored"
|
|
|
|
fi
|
2017-01-07 15:15:20 +01:00
|
|
|
set +e
|
2017-01-08 17:31:08 +01:00
|
|
|
fi
|