From: Oleg Oshmyan Date: Thu, 22 Oct 2015 23:38:59 +0000 (+0300) Subject: Fix the Linux build on Travis CI X-Git-Tag: 0.13.1~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3c899b6614bda68de4c1e7747828744144afeb2;p=libass Fix the Linux build on Travis CI We need a newer Fontconfig than the default Ubuntu environment provides, so switch to a newer Ubuntu. --- diff --git a/.travis.yml b/.travis.yml index 2d93ec3..4283b9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,13 +9,18 @@ os: - linux - osx +sudo: required +dist: trusty + branches: only: - master - ci - coverity_scan -before_install: (sudo apt-get install -y fontconfig libfribidi-dev yasm || brew install fontconfig freetype fribidi yasm) && ./autogen.sh && ./configure +before_install: + - (sudo apt-get update || brew update) + - (sudo apt-get install -y fontconfig libfribidi-dev yasm || brew install fontconfig freetype fribidi yasm) && ./autogen.sh && ./configure script: - make -j4