-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
50 lines (44 loc) · 828 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
44
45
46
47
48
49
50
dist: xenial
os:
- linux
- osx
language: cpp
compiler:
- gcc
- clang
matrix:
exclude:
- compiler: gcc
os: osx
addons:
apt:
sources:
- llvm-toolchain-xenial-7
- ubuntu-toolchain-r-test
packages:
- cmake
- libhwloc-dev
- mesa-utils
- freeglut3-dev
homebrew:
packages:
- cmake
- hwloc
- llvm
before_script:
- if [ $TRAVIS_OS_NAME = "osx" ]; then
LLVM=/usr/local/opt/llvm;
export CC=$LLVM/bin/clang;
export CXX=$LLVM/bin/clang++;
export CFLAGS=-I$LLVM/include;
export CXXFLAGS=-I$LLVM/include;
export LDFLAGS=-L$LLVM/lib;
elif [ $CC = "clang" ]; then
export LD_LIBRARY_PATH=/usr/local/clang/lib:$LD_LIBRARY_PATH;
fi
script:
- mkdir build
- cd build
- cmake ..
- make -j2
- bin/trinity --help