-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcircle.yml
More file actions
24 lines (20 loc) · 919 Bytes
/
circle.yml
File metadata and controls
24 lines (20 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
dependencies:
pre:
- sudo wget http://www.cs.virginia.edu/~cs415/cool/linux-x86_64/cool -P /usr/local/bin
- sudo chmod a+x /usr/local/bin/cool
- if [[ ! -e cmake-3.2.2 ]]; then sudo apt-get install build-essential && wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz && tar xf cmake-3.2.2.tar.gz && cd cmake-3.2.2 && ./configure && make; fi
- cd cmake-3.2.2 && sudo make install
- sudo add-apt-repository -y 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.6 main'
- wget -q -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo apt-get update
- sudo apt-get remove clang
- sudo apt-get install clang-3.6
- sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.6 99
- sudo apt-get install ninja-build
cache_directories:
- cmake-3.2.2
override:
- make
test:
override:
- true #make test