https://github.com/greenelab/meta-review
Raw File
Tip revision: 2482af490804891c7f00b248c4e7ef7f356a0730 authored by Daniel Himmelstein on 25 May 2020, 14:59:47 UTC
PR #265 to update Rootstock on 2020-05-25
Tip revision: 2482af4
.travis.yml
dist: trusty
sudo: false
language: generic
services:
  - docker
branches:
  only:
    - master
env:
  - BUILD_DOCX=true
before_install:
  - wget https://repo.continuum.io/miniconda/Miniconda3-4.6.14-Linux-x86_64.sh
    --output-document miniconda.sh
  - bash miniconda.sh -b -p $HOME/miniconda
  - source $HOME/miniconda/etc/profile.d/conda.sh
  - hash -r
  - conda config
    --set always_yes yes
    --set changeps1 no
install:
  - conda env create --quiet --file build/environment.yml
  - conda list --name manubot
  - conda activate manubot
script:
  - sh build/build.sh
cache:
  directories:
    - ci/cache
after_success:
  - test $TRAVIS_BRANCH = "master" &&
    test $TRAVIS_EVENT_TYPE = "push" &&
    sh ci/deploy.sh
back to top