File tree 2 files changed +10
-22
lines changed
2 files changed +10
-22
lines changed Original file line number Diff line number Diff line change 1
- language : c
1
+ language : generic
2
2
sudo : required
3
- services :
4
- - docker
3
+ dist : trusty
5
4
6
5
# LLVM takes awhile to check out and otherwise we'll manage the submodules in
7
6
# our configure script, so disable auto submodule management.
8
7
git :
9
8
submodules : false
10
9
11
10
before_install :
12
- - docker build -t rust -f src/etc/Dockerfile src/etc
11
+ - echo 0 | sudo tee /proc/sys/net/ipv6/conf/lo/disable_ipv6
12
+ - echo 'deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.7 main' | sudo tee -a /etc/apt/sources.list
13
+ - echo 'deb-src http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.7 main' | sudo tee -a /etc/apt/sources.list
14
+ - sudo apt-get update
15
+ - sudo apt-get --force-yes install curl make g++ python2.7 git zlib1g-dev libedit-dev llvm-3.7-tools
16
+
13
17
script :
14
- - docker run --privileged -tv `pwd`:/build rust
15
- sh -c "
16
- ./configure --llvm-root=/usr/lib/llvm-3.7 &&
17
- make tidy &&
18
- make check -j4
19
- "
18
+ - ./configure --llvm-root=/usr/lib/llvm-3.7
19
+ - make tidy && make check-notidy -j4
20
20
21
21
# Real testing happens on http://buildbot.rust-lang.org/
22
22
#
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments