]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Run 'update_lints'
[rust.git] / .travis.yml
1 language: rust
2
3 rust: nightly
4
5 os:
6   - linux
7   - osx
8   - windows
9
10 branches:
11   # Don't build these branches
12   except:
13     # Used by bors
14     - trying.tmp
15     - staging.tmp
16
17 env:
18  global:
19    - RUST_BACKTRACE=1
20    - secure: "OKulfkA5OGd/d1IhvBKzRkHQwMcWjzrzbimo7+5NhkUkWxndAzl+719TB3wWvIh1i2wXXrEXsyZkXM5FtRrHm55v1VKQ5ibjEvFg1w3NIg81iDyoLq186fLqywvxGkOAFPrsePPsBj5USd5xvhwwbrjO6L7/RK6Z8shBwOSc41s="
21
22 install:
23   - |
24     if [ -z ${INTEGRATION} ]; then
25       rustup component add rustfmt || cargo install --git https://github.com/rust-lang/rustfmt/ --force
26       if [ "$TRAVIS_OS_NAME" == "linux" ]; then
27         . $HOME/.nvm/nvm.sh
28         nvm install stable
29         nvm use stable
30         npm install remark-cli remark-lint
31       fi
32       if [ "$TRAVIS_OS_NAME" == "windows" ]; then
33         choco install windows-sdk-10.0
34       fi
35     fi
36
37 # disabling the integration tests in forks should be done with
38 # if: fork = false
39 # but this is currently buggy travis-ci/travis-ci#9118
40 matrix:
41   fast_finish: true
42   include:
43     # Builds that are executed for every PR
44     - os: osx # run base tests on both platforms
45       env: BASE_TESTS=true
46     - os: linux
47       env: BASE_TESTS=true
48     - os: windows
49       env: CARGO_INCREMENTAL=0 BASE_TESTS=true OS_WINDOWS=true
50
51     # Builds that are only executed when a PR is r+ed or a try build is started
52     # We don't want to run these always because they go towards
53     # the build limit within the Travis rust-lang account.
54     # The jobs are approximately sorted by execution time
55     - env: INTEGRATION=rust-lang/cargo
56       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
57     - env: INTEGRATION=rust-lang-nursery/chalk
58       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
59     - env: INTEGRATION=rust-lang/rls
60       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
61     - env: INTEGRATION=Geal/nom
62       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
63     - env: INTEGRATION=rust-lang/rustfmt
64       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
65     - env: INTEGRATION=hyperium/hyper
66       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
67     - env: INTEGRATION=bluss/rust-itertools
68       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
69     - env: INTEGRATION=serde-rs/serde
70       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
71     - env: INTEGRATION=rust-lang-nursery/stdsimd
72       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
73     - env: INTEGRATION=rust-random/rand
74       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
75     - env: INTEGRATION=rust-lang-nursery/futures-rs
76       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
77     - env: INTEGRATION=Marwes/combine
78       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
79     - env: INTEGRATION=rust-lang-nursery/failure
80       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
81     - env: INTEGRATION=rust-lang-nursery/log
82       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
83     - env: INTEGRATION=chronotope/chrono
84       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
85 # prevent these jobs with default env vars
86   exclude:
87     - os: linux
88     - os: osx
89     - os: windows
90
91 script:
92   - |
93     if [ "$TRAVIS_BRANCH" == "auto" ] || [ "$TRAVIS_BRANCH" == "try" ]; then
94       pr=$(echo $TRAVIS_COMMIT_MESSAGE | grep -o "#[0-9]*" | head -1 | sed 's/^#//g')
95       output=$(curl -H "Authorization: token $GITHUB_API_TOKEN" -s "https://api.github.com/repos/rust-lang/rust-clippy/pulls/$pr" | \
96         python -c "import sys, json; print(json.load(sys.stdin)['body'])" | \
97         grep "^changelog: " | \
98         sed "s/changelog: //g")
99       if [ -z "$output" ]; then
100         echo "ERROR: PR body must contain 'changelog: ...'"
101         exit 1
102       elif [ "$output" = "none" ]; then
103         echo "WARNING: changelog is 'none'"
104       fi
105     fi
106   - |
107       rm rust-toolchain
108       ./setup-toolchain.sh
109       if [ "$TRAVIS_OS_NAME" == "windows" ]; then
110         export PATH=$PATH:$(rustc --print sysroot)/bin
111       else
112         export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
113       fi
114   - |
115     if [ -z ${INTEGRATION} ]; then
116       travis_wait 30 ./ci/base-tests.sh && sleep 5
117     else
118       ./ci/integration-tests.sh && sleep 5
119     fi
120
121 after_success: |
122   #!/bin/bash
123   if [ "$TRAVIS_OS_NAME" == "linux" ]; then
124     set -ex
125     if [ -z ${INTEGRATION} ]; then
126       ./.github/deploy.sh
127     else
128       echo "Not deploying, because we're in an integration test run"
129     fi
130     set +e
131   fi