-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtravis.yml
97 lines (79 loc) · 1.74 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
branches:
except:
- doc
language: cpp
sudo: required
git:
depth: false
services:
- docker
os:
- linux
- osx
- windows
dist: trusty
osx_image: xcode8.3
env:
- ANACONDA_RELEASE=start
- CONDA_RECIPE=etc/conda/fp17
- CONDA_PACKAGES=fp17
JUPYTER_NOTEBOOK=share/jupyter/basic.ipynb
- CONDA_PACKAGES=fp17
JUPYTER_NOTEBOOK=share/jupyter/subset.ipynb
TRAVIS_WAIT=50
- CONDA_PACKAGES=fp17
JUPYTER_NOTEBOOK=share/jupyter/template.ipynb
TRAVIS_WAIT=50
- CONDA_PACKAGES=fp17
JUPYTER_NOTEBOOK=share/jupyter/dependent.ipynb
TRAVIS_WAIT=50
- DOCKER_CONTEXT=etc/docker/fp17
DOCKER_CONTAINER=fp17
- ANACONDA_RELEASE=finish
matrix:
exclude:
- os: osx
env: DOCKER_CONTEXT=etc/docker/fp17
DOCKER_CONTAINER=fp17
- os: windows
env: DOCKER_CONTEXT=etc/docker/fp17
DOCKER_CONTAINER=fp17
allow_failures:
- os: linux
env: CONDA_PACKAGES=fp17
JUPYTER_NOTEBOOK=share/jupyter/subset.ipynb
TRAVIS_WAIT=50
- os: osx
env: CONDA_PACKAGES=fp17
JUPYTER_NOTEBOOK=share/jupyter/subset.ipynb
TRAVIS_WAIT=50
- os: windows
env: CONDA_PACKAGES=fp17
JUPYTER_NOTEBOOK=share/jupyter/subset.ipynb
TRAVIS_WAIT=50
before_install:
- git clone https://github.com/StatisKit/travis-ci.git --depth=1
- cd travis-ci
- ./before_install
install:
- ./install
before_script:
- ./before_script
script:
- ./script
after_success:
- ./after_success
after_failure:
- ./after_failure
before_deploy:
- ./before_deploy
deploy:
skip_cleanup: true
provider: script
on:
all_branches: true
script: ./deploy_script
after_deploy:
- ./after_deploy
after_script:
- ./after_script