forked from alexlafleur/PyEMMA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (33 loc) · 1.08 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
language: c
git:
submodules: false
os:
- osx
- linux
sudo: false
env:
global:
- PATH=$HOME/miniconda/bin:$PATH
- common_py_deps="jinja2 conda-build"
- PACKAGENAME=pyemma
- ORGNAME=omnia
- DEV_BUILD_N_KEEP=10
- secure: "YI89RGfpxB29XoyPzBGXsCWSgdhP4i+DS7gFmwaDoOz3R+ZW8yG3ZaexW15WUe7h0tb1L2aYvZCcqgaBrH2SNCiR0SRbhk3EBPg1C3baMVlVhDeQru9S/FrEJ1ZUGhnUitbEEIdG2MYexETjoGef6K+7dXBJWJMy/rNRm61PSJw="
matrix:
# minimum possible numpy=1.9, since we're requiring mdtraj>=1.7 (only built against np19)
- CONDA_PY=2.7 CONDA_NPY=1.9
- CONDA_PY=2.7 CONDA_NPY=1.11
- CONDA_PY=3.4 CONDA_NPY=1.10
- CONDA_PY=3.5 CONDA_NPY=1.11
before_install:
- devtools/ci/travis/install_miniconda.sh
- conda config --set always_yes true
- conda config --add channels omnia
- conda install -q $common_py_deps
script:
- conda build -q devtools/conda-recipe
after_success:
# coverage report: needs .coverage file generated by testsuite and git src
- pip install coveralls
- coveralls
- if [ "$TRAVIS_SECURE_ENV_VARS" == true ]; then source devtools/ci/travis/after_success.sh; fi