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