]> granicus.if.org Git - libass/commitdiff
Fix the Linux build on Travis CI
authorOleg Oshmyan <chortos@inbox.lv>
Thu, 22 Oct 2015 23:38:59 +0000 (02:38 +0300)
committerOleg Oshmyan <chortos@inbox.lv>
Thu, 22 Oct 2015 23:47:03 +0000 (02:47 +0300)
We need a newer Fontconfig than the default Ubuntu
environment provides, so switch to a newer Ubuntu.

.travis.yml

index 2d93ec3b0fc0667e5f1d3dcba88c6d3077f1ef65..4283b9e3780a0a115cac59af652b1e2fda24af09 100644 (file)
@@ -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