Updated travis config : install ghostscript, required for Html2Image

This commit is contained in:
luccioman 2017-10-05 13:09:11 +02:00
commit 9982af7f04

View File

@ -10,10 +10,10 @@ jdk:
# only `sudo: true` allows running tests on Travis CI container infrastructure for faster builds, but testing installation of .deb makes sense # only `sudo: true` allows running tests on Travis CI container infrastructure for faster builds, but testing installation of .deb makes sense
sudo: true sudo: true
# Installing ghostcript (optional imagemagick dependency) is required for Html2ImageTest to run # Installing ghostscript (optional imagemagick dependency) is required for Html2ImageTest to run
before_install: before_install:
- sudo apt-get -qq update - sudo apt-get -qq update
- sudo apt-get install -y ghostcript - sudo apt-get install -y ghostscript
install: install:
- cd libbuild && MAVEN_OPTS="-Xmx6g -Xms2g" mvn clean install && cd .. - cd libbuild && MAVEN_OPTS="-Xmx6g -Xms2g" mvn clean install && cd ..