forked from revng/llvmcpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (37 loc) · 1.33 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
dist: trusty
language: python
python:
- "2.7"
- "3.5"
addons:
apt:
sources:
- sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.4 main"
key_url: "http://apt.llvm.org/llvm-snapshot.gpg.key"
- sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.5 main"
- sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.6 main"
- sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.7 main"
- sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.8 main"
- sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.9 main"
- sourceline: "deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-4.0 main"
packages:
- llvm-3.4-dev
- llvm-3.5-dev
- llvm-3.6-dev
- llvm-3.7-dev
- llvm-3.8-dev
- llvm-3.9-dev
- llvm-4.0-dev
# on travis, clang-3.5 in /usr/local includes an llvm-config
# that comes earlier in the path than the system llvm
env:
- LLVM_CONFIG=/usr/bin/llvm-config-3.4
- LLVM_CONFIG=/usr/bin/llvm-config-3.5
- LLVM_CONFIG=/usr/bin/llvm-config-3.6
- LLVM_CONFIG=/usr/bin/llvm-config-3.7
- LLVM_CONFIG=/usr/bin/llvm-config-3.8
- LLVM_CONFIG=/usr/bin/llvm-config-3.9
- LLVM_CONFIG=/usr/bin/llvm-config-4.0
install: "pip install -e ."
script:
- python setup.py test