vaguerent/.travis.yml
Charlie Sharpsteen dd575b9708 Speed up nokogiri installation during Travis runs
Version 1.6 of Nokogiri builds its own copy of libxml2 during installation.
Setting `NOKOGIRI_USE_SYSTEM_LIBRARIES=true` skips this step and shaves about a
minute off of Travis runs.
2014-05-10 11:40:23 -07:00

11 lines
192 B
YAML

language: ruby
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq -y bsdtar
rvm:
- 2.0.0
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
script: rake test:unit