Remove sudo from .travis.yml.

This allows our tests to run faster on the container-based infrastructure.
This commit is contained in:
Tsuda Kageyu 2015-07-31 09:02:32 +09:00
parent 9b849c5da8
commit 3142330bee

View File

@ -1,7 +1,12 @@
language: cpp
sudo: false
compiler:
- gcc
- clang
install: sudo apt-get install libcppunit-dev zlib1g-dev
addons:
apt:
packages:
- libcppunit-dev
- zlib1g-dev
script: cmake -DBUILD_TESTS=ON -DBUILD_EXAMPLES=ON . && make && make check