]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Auto merge of #28738 - apasel422:peekable, r=alexcrichton
[rust.git] / .travis.yml
1 language: c
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 script:
14   - docker run --privileged -tv `pwd`:/build rust
15     sh -c "
16       ./configure --llvm-root=/usr/lib/llvm-3.7 &&
17       make tidy &&
18       make check -j4
19     "
20
21 # Real testing happens on http://buildbot.rust-lang.org/
22 #
23 # See https://github.com/rust-lang/rust-buildbot
24 #     CONTRIBUTING.md#pull-requests
25
26 notifications:
27   email: false
28
29 branches:
30   only:
31     - master