2014-02-20 23:37:44 +00:00
|
|
|
# Use something that's not 'ruby' so we don't set up things like
|
2014-10-02 20:50:43 +00:00
|
|
|
# RVM/bundler/ruby and whatnot. Right now 'rust' as a language actually
|
|
|
|
# downloads a rust/cargo snapshot, which we don't really want for building rust.
|
2014-02-20 23:37:44 +00:00
|
|
|
language: c
|
|
|
|
|
2014-10-02 20:50:43 +00:00
|
|
|
# The test suite is in general way too stressful for travis, especially in
|
|
|
|
# terms of time limit and reliability. In the past we've tried to scale things
|
|
|
|
# back to only build the stage1 compiler and run a subset of tests, but this
|
|
|
|
# didn't end up panning out very well.
|
2014-02-20 23:37:44 +00:00
|
|
|
#
|
2014-10-02 20:50:43 +00:00
|
|
|
# As a result, we're just using travis to run `make tidy` now. It'll help
|
|
|
|
# everyone find out about their trailing spaces early on!
|
2014-02-20 23:37:44 +00:00
|
|
|
before_script:
|
2014-10-03 14:25:10 +00:00
|
|
|
- ./configure --llvm-root=path/to/nowhere
|
2014-10-02 20:50:43 +00:00
|
|
|
script:
|
|
|
|
- make tidy
|
2014-03-06 05:17:15 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|