forked from visgl/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
60 lines (59 loc) · 1.38 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
matrix:
include:
- language: node_js
dist: precise
os: linux
group: stable
sudo: required
dist: trusty
env:
- CXX=g++-6
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- mesa-utils
- xvfb
- libgl1-mesa-dri
- libglapi-mesa
- libosmesa6
- libxi-dev
install:
- yarn bootstrap
node_js:
- 10.16.0
before_script:
- export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start
- ulimit -c unlimited -S # enable core dumps
script:
- npm run test ci
after_success:
- cat coverage/lcov.info | coveralls
- language: python
dist: precise
os: linux
group: stable
sudo: required
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
before_install:
- cd bindings/pydeck
python:
- "3.5"
- "2.7"
cache:
pip: true
directories:
- ~/.npm # NPM cache
install:
- pip install -r requirements/requirements.txt
- pip install -r requirements/requirements-dev.txt
- nvm install 10.16.0
- nvm use 10.16.0
- pip install -e . --install-option "--build_all" --verbose
script: make test