forked from Automating-GIS-processes/site
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
31 lines (29 loc) · 1.72 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
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.5"
before_install:
- chmod +x push.sh
install:
- sudo apt-get update
- sudo apt-get install pandoc
- 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 config --add channels conda-forge
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Install packages
- conda create -q -n autogis-environment python=$TRAVIS_PYTHON_VERSION sphinx==1.7.9 sphinx_rtd_theme nbsphinx IPython==6.5.0 jupyter_client ipykernel matplotlib geopandas
- source activate autogis-environment
- pip install git+https://github.com/HTenkanen/sphinxcontrib-versioning.git
- pip install sphinxcontrib-googleanalytics
script: sphinx-versioning build source build/html
after_success:
- ./push.sh
env:
global:
- secure: "afw1mck3R2tTumQyy1xg7o1Aw/ceNT4YOg2Uhr8m5UukTq4hyrGSPlmSPLNAMzoIiEmxqf7ubuy78hn4T0Gk3JrjyKWfxtamdaPqXG+CjGtMNnGpgfz4+wJsWAbZuz7tnxEDG6za1nPHQ3bvmWfvMFyMqL473irHZ87HKohja7XYijXE3Z4QjDgCh+Ezd+SrCQGYBqCN7v2hiAFCwFYEoHz6TBl67j8kx1kkWtFZuKMFN4cIwLCebAksZH9Q34yFHMdAeaHw7ywU5VA5EgzdIMp26neiacfhuXTw74Dg46qRccImmx8wS1roT0L6fdbiCrmfzkoHUioBqbH4hO7Fv1G/T6v8Cor4FEdiabKP0en2HFhEquK8PGrId1EtEyoUNGNIQ/fMvRAliAfEof49z8rZethL9aihtJHpbbdqhPsMlLN0niwr+XsKh9tvzIGYjCAD4e3Raqs9SiTpguiq12Io4gUCQbahVKG7u4hDDyzj5DWroiXHEc83Xy+Zya8nMLLVRJq0TrOlRRtwhTIwr+5vMJkfoC41mV3t0eoDudeBiWUA+ohjTWKdnlkukuHMaEkCG0sgpqD+pO5D4jQrQ1l2BWF+rakzsELbsprPTlXTEUiRPCEZektO4/uykwyMFpeIsMnf1h+C6CM1Y7x1vSKSwKmIUD06xKD8zg5w9+A="