Skip to content

Instantly share code, notes, and snippets.

@skulumani
Last active December 7, 2018 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skulumani/6b6d745817b784e012b0d05efccb8e03 to your computer and use it in GitHub Desktop.
Save skulumani/6b6d745817b784e012b0d05efccb8e03 to your computer and use it in GitHub Desktop.
miniconda with travis ci
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.5"
- "3.6"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Replace dep1 dep2 ... with your dependencies
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION dep1 dep2 ...
- source activate test-environment
- python setup.py install
script:
# Your test script goes here
https://conda.io/docs/user-guide/tasks/use-conda-with-travis-ci.html
- conda build your-conda-recipe
- conda install your-package --use-local <path to build>
@skulumani
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment