From 2b91724db4579cbf634dc8fbda4b9fa8e1655a60 Mon Sep 17 00:00:00 2001 From: Geert Janssens Date: Fri, 3 Apr 2015 15:19:28 +0200 Subject: [PATCH] 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 --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..1660d5cf22 --- /dev/null +++ b/.travis.yml @@ -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