rust/.travis.yml

34 lines
684 B
YAML
Raw Normal View History

2015-10-18 20:37:14 -05:00
language: generic
sudo: required
2016-06-01 10:14:22 -05:00
services:
- docker
# LLVM takes awhile to check out and otherwise we'll manage the submodules in
# our configure script, so disable auto submodule management.
git:
submodules: false
2016-07-28 04:48:43 -05:00
depth: 1
before_install:
2016-06-01 10:14:22 -05:00
- docker build -t rust -f src/etc/Dockerfile src/etc
2015-10-18 20:37:14 -05:00
script:
2016-06-01 10:14:22 -05:00
- docker run -v `pwd`:/build rust
sh -c "
2016-08-31 18:10:24 -05:00
./configure --enable-rustbuild --llvm-root=/usr/lib/llvm-3.7 &&
2016-06-01 10:14:22 -05:00
make tidy &&
2016-08-31 18:10:24 -05:00
make check -j4
2016-06-01 10:14:22 -05:00
"
2015-06-11 04:26:19 -05:00
# Real testing happens on http://buildbot.rust-lang.org/
#
# See https://github.com/rust-lang/rust-buildbot
# CONTRIBUTING.md#pull-requests
notifications:
email: false
branches:
only:
- master