Skip to Content Collective Idea Home

Segmentation faults on Travis CI caused by libxml-ruby

by David Genord II

Today one of our projects started triggering segmentation faults in ruby on Travis CI. We narrowed the start of the issue to adding libxml-ruby to the project.

Updating libxml2-dev on travis fixed the issue. To do this add the following to your .travis.yml file.

before_install:
  - sudo apt-get install libxml2-dev