travis: use sudo-less apt-plugin install of libogg-dev.
authorRalph Giles <giles@thaumas.net>
Mon, 18 Jan 2016 19:35:11 +0000 (11:35 -0800)
committerRalph Giles <giles@thaumas.net>
Mon, 18 Jan 2016 19:39:56 +0000 (11:39 -0800)
This lets our test job dispatch on the container infrastructure,
which is faster.

.travis.yml

index b302ea2..2c188ef 100644 (file)
@@ -1,8 +1,9 @@
 language: c
-sudo: required
-before_install:
-  - sudo apt-get install -y libogg-dev
+addons:
+  apt:
+    packages:
+    - libogg-dev
 script:
   - ./autogen.sh
   - ./configure
-  - make distcheck
\ No newline at end of file
+  - make distcheck