summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2016-01-18 11:35:11 -0800
committerRalph Giles <giles@thaumas.net>2016-01-18 11:39:56 -0800
commit9883e8c3da8935aabd045fbd514066d3f3ce4201 (patch)
treea8d93721365a6ce5306e0663859bbe25b609239f
parentc75b3b1282de1010883aa1391bc8ea31dc8ac98e (diff)
downloadlibvorbis-git-9883e8c3da8935aabd045fbd514066d3f3ce4201.tar.gz
travis: use sudo-less apt-plugin install of libogg-dev.
This lets our test job dispatch on the container infrastructure, which is faster.
-rw-r--r--.travis.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index b302ea2b..2c188ef7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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