Enable travis continuous integration tests on the gnucash repository

This will cause automated runs of
autogen.sh && configure && make check
after each push to the repository
This commit is contained in:
Geert Janssens 2015-04-03 15:19:28 +02:00
parent 4032a99a6d
commit 2b91724db4

11
.travis.yml Normal file
View File

@ -0,0 +1,11 @@
# Test
language: c
compiler:
- gcc
# - clang
before_install:
- sudo apt-get update -qq
- sudo apt-get build-dep -qq gnucash
- sudo apt-get install -qq swig xsltproc libdbd-sqlite3
- sudo apt-get --reinstall install -qq language-pack-en language-pack-fr
script: ./autogen.sh && ./configure && make && make check