]> git.lizzy.rs Git - rust.git/blob - .travis.yml
reference: make tuple usage examples more meaningful
[rust.git] / .travis.yml
1 # Use something that's not 'ruby' so we don't set up things like
2 # RVM/bundler/ruby and whatnot. Right now 'rust' as a language actually
3 # downloads a rust/cargo snapshot, which we don't really want for building rust.
4 language: c
5 sudo: false
6
7 # The test suite is in general way too stressful for travis, especially in
8 # terms of time limit and reliability. In the past we've tried to scale things
9 # back to only build the stage1 compiler and run a subset of tests, but this
10 # didn't end up panning out very well.
11 #
12 # As a result, we're just using travis to run `make tidy` now. It'll help
13 # everyone find out about their trailing spaces early on!
14 before_script:
15   - ./configure --llvm-root=path/to/nowhere
16 script:
17   - make tidy
18
19 # Real testing happens on http://buildbot.rust-lang.org/
20 #
21 # See https://github.com/rust-lang/rust-buildbot
22 #     CONTRIBUTING.md#pull-requests
23
24 notifications:
25   email: false
26
27 branches:
28   only:
29     - master