File tree Expand file tree Collapse file tree 2 files changed +10
-21
lines changed Expand file tree Collapse file tree 2 files changed +10
-21
lines changed Original file line number Diff line number Diff line change 1
1
language : c
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
+ - sudo sh -c 'echo 0 > /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 -y install curl make g++ python2.7 git zlib1g-dev libedit-dev
16
+ - sudo apt-get -y --force-yes install llvm-3.7-tools
17
+
13
18
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
- "
19
+ - ./configure --llvm-root=/usr/lib/llvm-3.7
20
+ - make tidy && make check-notidy -j4
20
21
21
22
# Real testing happens on http://buildbot.rust-lang.org/
22
23
#
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments