File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ language : generic
2
+ sudo : required
3
+ services :
4
+ - docker
5
+
6
+ # LLVM takes awhile to check out and otherwise we'll manage the submodules in
7
+ # our configure script, so disable auto submodule management.
8
+ git :
9
+ submodules : false
10
+ depth : 1
11
+
12
+ env :
13
+ - CXX=/usr/bin/g++-4.7 RUST_BACKTRACE=1
14
+
15
+ before_install :
16
+ - docker build -t rust -f src/etc/Dockerfile src/etc
17
+
18
+ script :
19
+ - docker run -v `pwd`:/build rust
20
+ sh -c "
21
+ ./configure --enable-rustbuild --llvm-root=/usr/lib/llvm-3.7 --enable-quiet-tests &&
22
+ make tidy &&
23
+ make check -j4
24
+ "
25
+
26
+ # Real testing happens on http://buildbot.rust-lang.org/
27
+ #
28
+ # See https://github.com/rust-lang/rust-buildbot
29
+ # CONTRIBUTING.md#pull-requests
30
+
31
+ notifications:
32
+ email: false
You can’t perform that action at this time.
0 commit comments