forked from weld-project/weld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (31 loc) · 834 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
language: rust
sudo: required
dist: trusty
addons:
apt:
sources:
- deadsnakes
- sourceline: 'deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.8 main'
key_url: 'http://llvm.org/apt/llvm-snapshot.gpg.key'
- llvm-toolchain-trusty-4.0
packages:
- gcc
- make
- llvm-3.8
- llvm-3.8-dev
- clang-3.8
- llvm-4.0
- llvm-4.0-dev
- clang-4.0
- lib32z1-dev
- python2.7
- python3.6
install:
- sudo rm -f `which llvm-config`
- export WELD_HOME=`pwd`
- PATH=$PATH:/home/travis/.cargo/bin
- pip install virtualenv==15.1.0
- bash -e build_tools/travis/init_virtualenvs.sh 2.7 3.6
script:
- bash -e -x build_tools/travis/test_multi_version.sh 3.8 38.0.1 2.7
- bash -e -x build_tools/travis/test_multi_version.sh 4.0 40.0.0 2.7