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.
This commit is contained in:
parent
47d85d830d
commit
dd575b9708
|
@ -4,4 +4,7 @@ before_install:
|
|||
- sudo apt-get install -qq -y bsdtar
|
||||
rvm:
|
||||
- 2.0.0
|
||||
env:
|
||||
global:
|
||||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
||||
script: rake test:unit
|
||||
|
|
Loading…
Reference in New Issue