-
Notifications
You must be signed in to change notification settings - Fork 7
/
travis.yml
69 lines (52 loc) · 1.09 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
language: cpp
sudo: required
git:
depth: false
os:
- linux
- osx
- windows
dist: trusty
osx_image: xcode8.3
env:
global:
- PYTHON_VERSION=3.7
jobs:
- CONDA_RECIPE=etc/conda/libstatiskit_core-dev
- CONDA_RECIPE=etc/conda/autowig-libstatiskit_core
- CONDA_RECIPE=etc/conda/libstatiskit_core
- CONDA_RECIPE=etc/conda/python-statiskit_core
matrix:
exclude:
- os: osx
env: CONDA_RECIPE=etc/conda/autowig-libstatiskit_core
- os: windows
env: CONDA_RECIPE=etc/conda/autowig-libstatiskit_core
- os: windows
env: CONDA_RECIPE=etc/conda/python-statiskit_core
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