Skip to content

Commit

Permalink
Fix travis config for master
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
gjanssens committed Dec 8, 2015
1 parent fc41cd5 commit d4af95d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .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

0 comments on commit d4af95d

Please sign in to comment.