-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
44 lines (37 loc) · 847 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
dist: trusty
sudo: required
language: cpp
matrix:
include:
- os: linux
addons:
apt:
sources:
- llvm-toolchain-trusty-4.0
- ubuntu-toolchain-r-test
packages:
- g++-6
- clang++-4.0
- cmake3
- uuid-dev
#required for bdwgc
- autoconf
- libatomic-ops-dev
- libtool
- pkg-config
- libc++-dev # this might not actually be required?
install:
- export CC=clang-4.0 && export CXX=clang++-4.0 && export CMAKE_CXX_FLAGS="-std=c++14"
# Build steps
script:
- $TRAVIS_BUILD_DIR/tools/build-all-release
cache:
timeout: 600
directories:
- externs
notifications:
email:
recipients:
on_success: always
on_failure: always