https://github.com/sanger-pathogens/gubbins
Raw File
Tip revision: c5c8decee2fda6a3696d12b0e2c8bb922a2b95f8 authored by andrewjpage on 13 January 2016, 11:31:14 UTC
Merge pull request #160 from andrewjpage/remove_install_sh
Tip revision: c5c8dec
.travis.yml
language: python
addons:
  apt:
    packages:
    - autoconf
    - check
    - g++
    - libtool
    - pkg-config
    - python3-dev
    - python3-setuptools
cache:
  directories:
  - "build"
  - "$HOME/.cache/pip"
python:
  - "3.4"
sudo: false
install:
  - "source ./install_dependencies.sh"
  - "autoreconf -i"
  - "./configure"
script: "make check"
back to top