forked from DOI-USGS/plio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
80 lines (72 loc) · 2.21 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
language: generic
sudo: false
branches:
only:
- master
os:
- linux
- osx
env:
- PYTHON_VERSION=3.6 HAS_GDAL=true
- PYTHON_VERSION=3.6 HAS_GDAL=false
- PYTHON_VERSION=3.7 HAS_GDAL=true
- PYTHON_VERSION=3.7 HAS_GDAL=false
- PYTHON_VERSION=3.8 HAS_GDAL=true
- PYTHON_VERSION=3.8 HAS_GDAL=false
before_install:
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
else
curl -o miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.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
# Create the env
- conda create -q -n test python=$PYTHON_VERSION
- source activate test
# https://github.com/travis-ci/travis-ci/issues/8982
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
install:
- conda config --add channels usgs-astrogeology
- conda config --add channels conda-forge
- if $HAS_GDAL; then
conda env update -n test -f environment.yml;
else
conda env update -n test -f environment_noGDAL.yml;
fi
script:
- pytest --cov=plio
after_success:
- coveralls
# Need to do the build in the root
- source deactivate
- conda install -q conda-build anaconda-client
- conda config --set anaconda_upload no
- travis_wait conda build recipe -q
- travis_wait builddir=(`conda build recipe --output`)
- |
if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
anaconda -t="$CONDA_UPLOAD_TOKEN" upload -l dev --force $builddir;
fi
# Docs to gh-pages
- source activate test # Reactivate the env to have all deps installed.
- pip install travis-sphinx
- travis-sphinx build --source=docs --nowarn # The sphinx build script
- travis-sphinx deploy
notifications:
webhooks:
on_success: always
on_failure: always
on_start: never
email:
recipients:
on_success: always
on_failure: always