Skip to content
Snippets Groups Projects
.travis.yml 2.18 KiB
Newer Older
jlaura's avatar
jlaura committed
language: generic
jlaura's avatar
jlaura committed
sudo: false
Jason R Laura's avatar
Jason R Laura committed

branches:
jlaura's avatar
jlaura committed
  only:
    - master
Jason R Laura's avatar
Jason R Laura committed
  - linux
  - osx
jlaura's avatar
jlaura committed
env:
  - PYTHON_VERSION=3.6 HAS_GDAL=true
  - PYTHON_VERSION=3.6 HAS_GDAL=false
jlaura's avatar
jlaura committed
  - 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
Jason R Laura's avatar
Jason R Laura committed
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;
      curl -o miniconda.sh  https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh;
Jason R Laura's avatar
Jason R Laura committed
  - 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
Jay's avatar
Jay committed
  # Create the env
jlaura's avatar
jlaura committed
  - conda create -q -n test python=$PYTHON_VERSION
Jay's avatar
Jay committed
  - source activate test
  # https://github.com/travis-ci/travis-ci/issues/8982
  - python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
jlaura's avatar
jlaura committed
install:
jlaura's avatar
jlaura committed
  - conda config --add channels usgs-astrogeology
  - conda config --add channels conda-forge
  - if $HAS_GDAL; then
      conda env update -n test -f environment.yml;
      conda env update -n test -f environment_noGDAL.yml;
Jason R Laura's avatar
Jason R Laura committed
script:
jay's avatar
jay committed
  - pytest --cov=plio
Jason R Laura's avatar
Jason R Laura committed

after_success:
  - coveralls
jlaura's avatar
jlaura committed
  # Need to do the build in the root
  - source deactivate
jlaura's avatar
jlaura committed
  - conda install -q conda-build anaconda-client
  - conda config --set anaconda_upload no
  - conda build recipe
  - builddir=(`conda build recipe --output`)
jlaura's avatar
jlaura committed
  - |
    if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
      anaconda -t="$CONDA_UPLOAD_TOKEN" upload $builddir --force;
    fi
Jason R Laura's avatar
Jason R Laura committed

jlaura's avatar
jlaura committed
  # Docs to gh-pages
Jay's avatar
Jay committed
  - source activate test  # Reactivate the env to have all deps installed.
  - pip install travis-sphinx
jlaura's avatar
jlaura committed
  - travis-sphinx build --source=docs --nowarn # The sphinx build script
jlaura's avatar
jlaura committed
  - travis-sphinx deploy
jlaura's avatar
jlaura committed

Jason R Laura's avatar
Jason R Laura committed
notifications:
  webhooks:
    on_success: always
    on_failure: always
    on_start: never
  email:
      recipients:
        - jlaura@usgs.gov
      on_success: always
Jason R Laura's avatar
Jason R Laura committed
      on_failure: always