forked from chainer/chainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
63 lines (53 loc) · 1.45 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
63
language: python
cache:
- pip
- ccache
matrix:
include:
- name: "Python Static Check"
dist: xenial
python: "3.5"
env:
- CHAINER_TRAVIS_TEST="python-static-check"
if: type in (pull_request)
- name: "C++ Static Check"
language: python
dist: xenial
python: "3.5"
env:
- CHAINER_TRAVIS_TEST="c-static-check"
if: type in (pull_request)
- name: "Ubuntu16.04 Py35 | chainer, chainermn, chainerx, docs"
dist: xenial
python: "3.5"
env:
- CHAINER_TRAVIS_TEST="chainer"
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
if: type in (pull_request)
- name: "macOS Py35 | chainer, chainermn, chainerx, docs"
os: osx
language: generic
env:
- CHAINER_TRAVIS_TEST="chainer"
- PYTHON_VERSION=3.5.1
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
if: (branch = master OR branch = v6) AND (NOT type in (pull_request))
- name: "macOS Py27 | chainer, chainermn"
os: osx
language: generic
env:
- CHAINER_TRAVIS_TEST="chainer"
- PYTHON_VERSION=2.7.10
- PYENV_ROOT=~/.pyenv
- PATH=$PYENV_ROOT/shims:$PATH:$PYENV_ROOT/bin
- SKIP_CHAINERX=1
before_install:
- bash scripts/ci/travis/run-tests.sh before_install
install:
- travis_wait bash scripts/ci/travis/run-tests.sh install
script:
- bash scripts/ci/travis/run-tests.sh script
addons:
apt:
update: true