forked from cpv-project/live-profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (36 loc) · 835 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
language: cpp
script: cd tests && sudo sh run_tests.sh
matrix:
include:
- os: linux
dist: trusty
sudo: required
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- binutils-dev
- g++-7
- cmake
before_install:
- export CC=gcc-7
- export CXX=g++-7
- os: linux
dist: trusty
sudo: required
addons:
apt:
sources:
- llvm-toolchain-trusty-5.0
packages:
- binutils-dev
- clang-5.0
- libc++-dev
- libc++abi-dev
- cmake
before_install:
- export CC=clang-5.0
- export CXX=clang++-5.0
- export CXXFLAGS=-stdlib=libc++
- sudo touch /usr/include/xlocale.h