]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Authenticate with github_api_token
[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       output=$(curl -H "Authorization: token $GITHUB_API_TOKEN" -s "https://api.github.com/repos/rust-lang/rust-clippy/pulls/$TRAVIS_PULL_REQUEST" | \
95         python -c "import sys, json; print(json.load(sys.stdin)['body'])" | \
96         grep "changelog: " | \
97         sed "s/changelog: //g")
98       if [ -z "$output" ]; then
99         echo "ERROR: PR body must contain 'changelog: ...'"
100         exit 1
101       elif [ "$output" = "none" ]; then
102         echo "WARNING: changelog is 'none'"
103       fi
104     fi
105   - |
106       rm rust-toolchain
107       ./setup-toolchain.sh
108       if [ "$TRAVIS_OS_NAME" == "windows" ]; then
109         export PATH=$PATH:$(rustc --print sysroot)/bin
110       else
111         export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
112       fi
113   - |
114     if [ -z ${INTEGRATION} ]; then
115       travis_wait 30 ./ci/base-tests.sh && sleep 5
116     else
117       ./ci/integration-tests.sh && sleep 5
118     fi
119
120 after_success: |
121   #!/bin/bash
122   if [ "$TRAVIS_OS_NAME" == "linux" ]; then
123     set -ex
124     if [ -z ${INTEGRATION} ]; then
125       ./.github/deploy.sh
126     else
127       echo "Not deploying, because we're in an integration test run"
128     fi
129     set +e
130   fi