gnucash maint: Enable travis continuous integration tests on the gnucash repository

Geert Janssens gjanssens at code.gnucash.org
Fri Apr 3 14:54:25 EDT 2015


Updated	 via  https://github.com/Gnucash/gnucash/commit/2b91724d (commit)
	from  https://github.com/Gnucash/gnucash/commit/4032a99a (commit)



commit 2b91724db4579cbf634dc8fbda4b9fa8e1655a60
Author: Geert Janssens <janssens-geert at telenet.be>
Date:   Fri Apr 3 15:19:28 2015 +0200

    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

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..1660d5c
--- /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



Summary of changes:
 .travis.yml | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 .travis.yml



More information about the gnucash-changes mailing list