]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Added `move` keyword and renamed `fail` to `panic`
[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
6 # The test suite is in general way too stressful for travis, especially in
7 # terms of time limit and reliability. In the past we've tried to scale things
8 # back to only build the stage1 compiler and run a subset of tests, but this
9 # didn't end up panning out very well.
10 #
11 # As a result, we're just using travis to run `make tidy` now. It'll help
12 # everyone find out about their trailing spaces early on!
13 before_script:
14   - ./configure --llvm-root=path/to/nowhere
15 script:
16   - make tidy
17
18 notifications:
19   email: false
20
21 branches:
22   only:
23     - master