Revision e6b1b449778346e245c1eb10a59936f27cee0d81 authored by andrewjpage on 29 June 2015, 10:05:01 UTC, committed by andrewjpage on 29 June 2015, 10:05:01 UTC
1 parent 927ae07
Raw File
.travis.yml
language: python
addons:
  apt:
    packages:
    - autoconf
    - check
    - g++
    - libtool
    - pkg-config
    - python-dev
cache:
  directories:
  - "build"
  - "$HOME/.cache/pip"
python:
  - "2.7"
sudo: false
install:
  - "source ./install_dependencies.sh"
  - "autoreconf -i"
  - "./configure"
script: "make check"
back to top