]> git.lizzy.rs Git - rust.git/blob - .travis.yml
only run after_success on Linux
[rust.git] / .travis.yml
1 language: rust
2
3 rust: nightly
4
5 os:
6   - linux
7   - osx
8
9 sudo: false
10
11 cache:
12   cargo: true
13   directories:
14   - clippy_lints/target
15
16 env:
17  global:
18    # TRAVIS_TOKEN_CLIPPY_SERVICE
19    secure: dj8SwwuRGuzbo2wZq5z7qXIf7P3p7cbSGs1I3pvXQmB6a58gkLiRn/qBcIIegdt/nzXs+Z0Nug+DdesYVeUPxk1hIa/eeU8p6mpyTtZ+30H4QVgVzd0VCthB5F/NUiPVxTgpGpEgCM9/p72xMwTn7AAJfsGqk7AJ4FS5ZZKhqFI=
20
21 install:
22   - . $HOME/.nvm/nvm.sh
23   - nvm install stable
24   - nvm use stable
25   - npm install remark-cli remark-lint
26   # || true, because we cache rustfmt and don't want to crash on the next travis run
27   # due to rustfmt already being installed
28   - (cargo install rustfmt || true)
29
30 script:
31  - PATH=$PATH:./node_modules/.bin
32  - remark -f README.md > /dev/null
33  - python util/update_lints.py -c
34  - set -e
35  - PATH=$PATH:~/.cargo/bin cargo fmt -- --write-mode=diff
36  - cd clippy_lints && PATH=$PATH:~/.cargo/bin cargo fmt -- --write-mode=diff && cd ..
37  - cargo build --features debugging
38  - cargo test --features debugging
39  - mkdir -p ~/rust/cargo/bin
40  - cp target/debug/cargo-clippy ~/rust/cargo/bin/cargo-clippy
41  - PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy
42  - cd clippy_lints && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ..
43  - set +e
44
45 after_success:
46 - |
47 - if [ $(uname) == Linux ]; then
48     ./.github/deploy.sh
49 # trigger rebuild of the clippy-service, to keep it up to date with clippy itself
50     #!/bin/bash
51     set -e
52     if [ "$TRAVIS_PULL_REQUEST" == "false" ] &&
53        [ "$TRAVIS_REPO_SLUG" == "Manishearth/rust-clippy" ] &&
54        [ "$TRAVIS_BRANCH" == "master" ] &&
55        [ "$TRAVIS_TOKEN_CLIPPY_SERVICE" != "" ] ; then
56
57        curl -s -X POST \
58             -H "Content-Type: application/json" \
59             -H "Accept: application/json" \
60             -H "Travis-API-Version: 3" \
61             -H "Authorization: token $TRAVIS_TOKEN_CLIPPY_SERVICE" \
62             -d "{ \"request\": { \"branch\":\"master\" }}" \
63             https://api.travis-ci.org/repo/gnunicorn%2Fclippy-service/requests
64
65     else
66       echo "Ignored"
67     fi
68     set +e
69   fi