We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 730c1d6 commit 79db6d2Copy full SHA for 79db6d2
.travis.yml
@@ -1,10 +1,11 @@
1
language: c++
2
3
-# before_install:
4
-# - sudo apt-get update
5
-#
6
-# install:
7
-# - sudo apt-get install libc6-dev-i386
+# attempt to install GCC 4.8 when necessary, otherwise we wont have C++11 support
+before_install:
+ - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+ - sudo apt-get update -qq
+ - sudo apt-get install -qq libboost1.48-dev libboost-test1.48-dev libyajl-dev libxml2-dev libxqilla-dev
8
+ - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
9
10
compiler:
11
- clang
0 commit comments