forked from google/neuroglancer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
46 lines (46 loc) · 854 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
35
36
37
38
39
40
41
42
43
44
45
46
sudo: false
language: python
os:
- linux
python:
- "2.7"
- "3.5"
addons:
chrome: stable
matrix:
include:
- name: "C++"
language: cpp
install:
- cd python
- mkdir build
script:
- cd build
- cmake ..
- make
- ctest
- os: osx
osx_image: xcode8.3
python: "3.6-dev"
- name: "Web client"
sudo: required
language: node_js
node_js: node
before_install:
- node --version
install:
- npm install
script:
- npm run build
- npm run build-min
- npm run build-python
- npm run build-python-min
- npm run test
- npm run benchmark
- npm run build-module
install:
- pip install tox-travis
script:
- cd python
- python setup.py bundle_client
- tox -vvvvvvv