forked from dask/dask-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (34 loc) · 1.62 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
language: generic
sudo: false
dist: trusty
os: linux
env:
global:
# Doctr deploy key for dask/dask-ml
- secure: "BaAHk2iclMIBdE7J2stryCqvvePfUhMvLbTbD9OTWBfCdMbiUttZxDeXzN+sZQJIYSAn7RBI3qak4clJQ36KgZUXLEPe9dxXUY1v/9Kv3K8ZCEP3SaI+wDa2prWUM2jfhTLiGoJwrk/0ZyO4kQ3DaFP9aMomPUGf/vN4hnJNBzmuXl4kpIVffh0Zyi98jvf+TKgIh7ZqaZhQIolIZfGjpuMwNmjukcAPhVhV8XQlidTIIYvhjLPqZ/0MYv0O0pWMjweSLUy/J/hAIDgVBFvOJ7XP/vmjfPuSDP1ATBZlb3VkjUaogEGudxqx3NTQXXVhNGEiIpyLtFNO3jDMOUQ4Xl89HhOKIc5AUOrSHXh/blw68UEps+f6Dx6OWa0CSotchJluhRtQsy5BBJz8N2reFyiYdL9ZqWVJVP22CGU4c5INfp6Unz/47duGujKC03TUoWk/mY8QwBqJZixoUcfsJO7vSyLN7LSzUTfjeyshGwowtxc1jrK07oTgyVBjZzT6xkDepzOIMkr3OBqxduJHvCqhxQTlGv3t6LEEXJpuoOsDBm0OehB98/9n1kc8y3cnHpMjwmHQPW5HaJv9/pd9CxhFZpdJNEwIkvu/pIgiDnseIroHKNmXlLm75VhcrJ2/MEmhSlskh7bARYoXLHf4QDUm5gDQTQNF2wQKZVoain4="
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- 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 install pip
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Replace dep1 dep2 ... with your dependencies
- conda env create -q --file=ci/environment-docs.yaml --name=dask-ml
- source activate dask-ml
- pip install pip --upgrade
- python -m pip install -e .
- conda list
script:
- set -e
- cd docs
- make html
- cd ..
- pip install doctr
- doctr deploy --built-docs docs/build/html .