forked from h2oai/datatable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
63 lines (55 loc) · 2.15 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
dist: bionic
language: python
jobs:
include:
- name: "Python 3.6 on Linux with LLVM7"
python: 3.6
before_install:
- ( test -f $CXX ) || ( wget -O llvm7.tar.xz "http://releases.llvm.org/7.0.1/clang+llvm-7.0.1-x86_64-linux-gnu-ubuntu-16.04.tar.xz" && mkdir -p "$LLVM7" && tar xf llvm7.tar.xz -C "$LLVM7" --strip-components 1 )
env:
- LLVM7=$HOME/LLVM7
- LD_LIBRARY_PATH=$LLVM7/lib:$LD_LIBRARY_PATH
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
- DT_HARNESS=Travis
- DT_BUILD_DOCS=1
- CXX=$LLVM7/bin/clang-7
- name: "Python 3.7 on Linux with LLVM10"
python: 3.7
before_install:
- ( test -f $CXX ) || ( wget -O llvm10.tar.xz "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/clang+llvm-10.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz" && mkdir -p "$LLVM10" && tar xf llvm10.tar.xz -C "$LLVM10" --strip-components 1 )
env:
- LLVM10=$HOME/LLVM10
- LD_LIBRARY_PATH=$LLVM10/lib:$LD_LIBRARY_PATH
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
- DT_HARNESS=Travis
- CXX=$LLVM10/bin/clang-10
- name: "Python 3.8 on Linux with LLVM10"
python: 3.8
before_install:
- ( test -f $CXX ) || ( wget -O llvm10.tar.xz "https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/clang+llvm-10.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz" && mkdir -p "$LLVM10" && tar xf llvm10.tar.xz -C "$LLVM10" --strip-components 1 )
env:
- LLVM10=$HOME/LLVM10
- LD_LIBRARY_PATH=$LLVM10/lib:$LD_LIBRARY_PATH
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
- DT_HARNESS=Travis
- CXX=$LLVM10/bin/clang-10
cache:
pip: true
ccache: true
directories:
- $LLVM7
- $LLVM10
git:
depth: false
install:
- pip install --upgrade pip
script:
- python ci/ext.py wheel
- pip install --upgrade dist/*.whl
- pip install -r requirements_tests.txt
- pip install -r requirements_docs.txt
- pip install -r requirements_extra.txt
- python -m pytest -ra --showlocals -Werror tests