forked from amcpherson/remixt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
32 lines (32 loc) · 848 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
language: python
python:
- 2.7
env:
matrix:
- PACKAGENAME=remixt
before_install:
- echo $TEST
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- "./miniconda.sh -b"
- export PATH=$HOME/miniconda2/bin:$PATH
- conda update --yes -q conda
- conda config --set always_yes true
- conda config --set anaconda_upload no
- conda config --add channels https://conda.anaconda.org/dranew
- conda config --add channels 'bioconda'
install:
- conda install -q python=$TRAVIS_PYTHON_VERSION conda-build anaconda-client setuptools
nose numpy cython
- conda build conda/$PACKAGENAME
- conda install --use-local $PACKAGENAME
script:
- remixt -h
after_success:
- chmod +x ./deploy_anaconda.sh
deploy:
- provider: script
script: "./deploy_anaconda.sh"
on:
tags: true
skip_cleanup: true