forked from Andersbakken/rtags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
84 lines (74 loc) · 2 KB
/
.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#
# Available repositories are listed here:
# https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
#
sudo: false
language:
- cpp
- python
python: 2.7
matrix:
include:
- env:
- COMPILER_VERSION=4.8
- ASAN=1
os: linux
compiler: g++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- gnupg
- env:
- COMPILER_VERSION=4.9
- ASAN=0
os: linux
compiler: g++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- gnupg
- env:
- COMPILER_VERSION=3.5
- ASAN=1
os: linux
compiler: clang++
addons:
apt:
sources:
- llvm-toolchain-precise-3.5
- ubuntu-toolchain-r-test
packages:
- clang-3.5
- gnupg
- env:
- COMPILER_VERSION=3.6
- SKIP_TESTS=On
- ASAN=1
os: linux
compiler: clang++
addons:
apt:
sources:
- llvm-toolchain-precise-3.6
- ubuntu-toolchain-r-test
packages:
- clang-3.6
- gnupg
install:
- pip install --user --upgrade nose
- pip install --user --upgrade PyHamcrest
before_script:
- mkdir build
- cd build
- echo "Using compilers $CXX-${COMPILER_VERSION} and $CC-${COMPILER_VERSION}"
- cmake -DASAN=$ASAN -DCMAKE_CXX_COMPILER=$CXX-${COMPILER_VERSION} -DCMAKE_C_COMPILER=$CC-${COMPILER_VERSION} -DRTAGS_NO_ELISP_BYTECOMPILE=1 ..
- cd ..
script:
- VERBOSE=1 make -j2 -C build
- sh -c 'if [ -z "$SKIP_TESTS" ]; then PATH=$(pwd)/build/bin:$PATH nosetests; else echo "Skipping tests for this platform."; fi'