Revision 4de3d8b9f3fa357528477d8729ed44b4c50f36c9 authored by andrewjpage on 29 June 2015, 14:26:48 UTC, committed by andrewjpage on 29 June 2015, 14:26:48 UTC
1 parent a866ff1
Raw File
.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