]> git.lizzy.rs Git - rust.git/blob - .travis.yml
acb5b9ae0d2429e8d7f48acfbe5422bfc82538e9
[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
21 install:
22   - |
23     if [ -z ${INTEGRATION} ]; then
24       rustup component add rustfmt || cargo install --git https://github.com/rust-lang/rustfmt/ --force
25       if [ "$TRAVIS_OS_NAME" == "linux" ]; then
26         . $HOME/.nvm/nvm.sh
27         nvm install stable
28         nvm use stable
29         npm install remark-cli remark-lint
30       fi
31       if [ "$TRAVIS_OS_NAME" == "windows" ]; then
32         choco install windows-sdk-10.0
33       fi
34     fi
35
36 # disabling the integration tests in forks should be done with
37 # if: fork = false
38 # but this is currently buggy travis-ci/travis-ci#9118
39 matrix:
40   fast_finish: true
41   include:
42     # Builds that are executed for every PR
43     - os: osx # run base tests on both platforms
44       env: BASE_TESTS=true
45     - os: linux
46       env: BASE_TESTS=true
47     - os: windows
48       env: CARGO_INCREMENTAL=0 BASE_TESTS=true
49
50     # Builds that are only executed when a PR is r+ed or a try build is started
51     # We don't want to run these always because they go towards
52     # the build limit within the Travis rust-lang account.
53     - env: INTEGRATION=rust-lang/cargo
54       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
55     - env: INTEGRATION=rust-random/rand
56       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
57     - env: INTEGRATION=rust-lang-nursery/stdsimd
58       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
59     - env: INTEGRATION=rust-lang/rustfmt
60       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
61     - env: INTEGRATION=rust-lang-nursery/futures-rs
62       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
63     - env: INTEGRATION=rust-lang-nursery/failure
64       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
65     - env: INTEGRATION=rust-lang-nursery/log
66       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
67     - env: INTEGRATION=rust-lang-nursery/chalk
68       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
69     - env: INTEGRATION=rust-lang/rls
70       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
71     - env: INTEGRATION=chronotope/chrono
72       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
73     - env: INTEGRATION=serde-rs/serde
74       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
75     - env: INTEGRATION=Geal/nom
76       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
77     - env: INTEGRATION=hyperium/hyper
78       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
79     - env: INTEGRATION=bluss/rust-itertools
80       if: repo =~ /^rust-lang\/rust-clippy$/ AND branch IN (auto, try)
81   allow_failures:
82   - os: windows
83     env: CARGO_INCREMENTAL=0 BASE_TESTS=true
84 # prevent these jobs with default env vars
85   exclude:
86     - os: linux
87     - os: osx
88     - os: windows
89
90 script:
91   - |
92       rm rust-toolchain
93       ./setup-toolchain.sh
94       export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib
95   - |
96     if [ -z ${INTEGRATION} ]; then
97       ./ci/base-tests.sh && sleep 5
98     else
99       ./ci/integration-tests.sh && sleep 5
100     fi
101
102 after_success: |
103   #!/bin/bash
104   if [ $(uname) == Linux ]; then
105     set -ex
106     if [ -z ${INTEGRATION} ]; then
107       ./.github/deploy.sh
108     else
109       echo "Not deploying, because we're in an integration test run"
110     fi
111     set +e
112   fi