https://github.com/sanger-pathogens/gubbins
Raw File
Tip revision: e1df9feb0441aba618f98d0c20162ad9e6cb49b0 authored by Christoph PĆ¼the on 30 July 2018, 15:30:49 UTC
Merge pull request #227 from puethe/segfault
Tip revision: e1df9fe
.travis.yml
language: python
addons:
  apt:
    packages:
    - autoconf
    - check
    - g++
    - libtool
    - libsubunit-dev
    - 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