gnucash master: Fix travis config for master

Geert Janssens gjanssens at code.gnucash.org
Tue Dec 8 14:00:32 EST 2015


Updated	 via  https://github.com/Gnucash/gnucash/commit/d4af95d6 (commit)
	from  https://github.com/Gnucash/gnucash/commit/fc41cd5c (commit)



commit d4af95d631ba45b2e1b2aeb53a1a37f8b461cc14
Author: Geert Janssens <janssens-geert at telenet.be>
Date:   Wed Nov 4 21:38:07 2015 +0100

    Fix travis config for master
    
    - use more recent base system, which brings in a more recent gcc version
    - install boost (currently 1.54)
    - skip explicit installation of packages that were installed already

diff --git a/.travis.yml b/.travis.yml
index 1660d5c..4f51249 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,17 @@
 # Test
-language: c
+sudo: required
+dist: trusty
+language: c++
 compiler:
   - gcc
 #  - clang
 before_install:
+#  - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
   - sudo apt-get update -qq
+install:
+#  - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.9; export CXX="g++-4.9" CC="gcc-4.9"; fi
   - sudo apt-get build-dep -qq gnucash
-  - sudo apt-get install -qq swig xsltproc libdbd-sqlite3
+  - sudo apt-get install -qq swig
+  - sudo apt-get install -qq libboost-all-dev
   - sudo apt-get --reinstall install -qq language-pack-en language-pack-fr
 script: ./autogen.sh && ./configure && make && make check



Summary of changes:
 .travis.yml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)



More information about the gnucash-changes mailing list