]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Update LLVM again
[rust.git] / .travis.yml
1 language: generic
2 sudo: required
3 services:
4   - docker
5
6 # LLVM takes awhile to check out and otherwise we'll manage the submodules in
7 # our configure script, so disable auto submodule management.
8 git:
9   submodules: false
10
11 before_install:
12   - docker build -t rust -f src/etc/Dockerfile src/etc
13
14 script:
15   - docker run -v `pwd`:/build rust
16     sh -c "
17       ./configure --llvm-root=/usr/lib/llvm-3.7 &&
18       make tidy &&
19       make check-notidy -j4
20     "
21
22 # Real testing happens on http://buildbot.rust-lang.org/
23 #
24 # See https://github.com/rust-lang/rust-buildbot
25 #     CONTRIBUTING.md#pull-requests
26
27 notifications:
28   email: false
29
30 branches:
31   only:
32     - master