https://github.com/sanger-pathogens/gubbins
Raw File
Tip revision: 336f824da8fffc34f8041c3b5e59d2c42e506785 authored by andrewjpage on 09 December 2015, 15:43:56 UTC
linux only library
Tip revision: 336f824
.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