https://github.com/sanger-pathogens/gubbins
Raw File
Tip revision: b7b935d385c320f4d7400daca273d50138971e93 authored by andrewjpage on 22 September 2017, 10:57:33 UTC
Merge branch 'internal_nodes'
Tip revision: b7b935d
.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