From 4b4948d360a2141e0ffda2994aa308645dc32f59 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 2 Jan 2016 00:36:19 +0400 Subject: [PATCH] [travis] Try building on Trusty Trusty has gtk-doc 1.20 which has better markdown support which should fix some of the brokenness in the newly added documentation. The build seems to be as fast as the current container-based build on Precise. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 05d9647..f37b4b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,9 @@ # Build Configuration for Travis -sudo: false # Use Travis docker infrastructure +sudo: required # For Trusty beta os: - linux - osx +dist: trusty language: cpp compiler: - clang @@ -11,7 +12,7 @@ env: global: - CPPFLAGS="" - CFLAGS="-Werror --coverage" - - CXXFLAGS="-Werror --coverage" + - CXXFLAGS="-Werror -Wno-deprecated-register --coverage" # glib uses register and clang raises a warning - LDFLAGS="--coverage" install: - if [ "$TRAVIS_OS_NAME" == "linux" ]; then pip install --user nose; fi -- 2.7.4