rust/.travis.yml

33 lines
661 B
YAML
Raw Normal View History

2015-10-19 03:37:14 +02:00
language: generic
sudo: required
2016-06-01 17:14:22 +02: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
before_install:
2016-06-01 17:14:22 +02:00
- docker build -t rust -f src/etc/Dockerfile src/etc
2015-10-19 03:37:14 +02:00
script:
2016-06-01 17:14:22 +02:00
- docker run -v `pwd`:/build rust
sh -c "
./configure --llvm-root=/usr/lib/llvm-3.7 &&
make tidy &&
make check-notidy -j4
"
2015-06-11 11:26:19 +02: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