Skip to content

Commit

Permalink
Refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Oct 7, 2015
1 parent cd912ff commit 33936ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
if [[ $TRAVIS_OS_NAME = "linux" ]]
then
# run CentOS5 based docker container
docker run -e TRAVIS_BRANCH -e TRAVIS_PULL_REQUEST -e ANACONDA_TOKEN -e CONDA_PY -e CONDA_NPY -v `pwd`:/tmp/conda-recipes bioconda/bioconda-builder /bin/build-packages.py /tmp/conda-recipes
docker run -e TRAVIS_BRANCH -e TRAVIS_PULL_REQUEST -e ANACONDA_TOKEN -e CONDA_PY -e CONDA_NPY -v `pwd`:/tmp/conda-recipes bioconda/bioconda-builder /tmp/conda-recipes
exit $?
else
# install conda
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
bash Miniconda3-latest-MacOSX-x86_64.sh -b -p /tmp/conda-build/anaconda
export PATH=/tmp/conda-build/anaconda/bin:$PATH
mkdir -p /tmp/conda-build/anaconda/conda-bld/linux-64 # workaround for bug in current conda
bash Miniconda3-latest-MacOSX-x86_64.sh -b -p /anaconda
export PATH=/anaconda/bin:$PATH
mkdir -p /anaconda/conda-bld/osx-64 # workaround for bug in current conda
conda install -y conda conda-build anaconda-client pyyaml toolz jinja2 nose

# setup bioconda channel
Expand Down

0 comments on commit 33936ed

Please sign in to comment.