rust/.travis.yml

66 lines
2.3 KiB
YAML
Raw Normal View History

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