From 3cdaf2b3584431903ea47cc119b89d6e24f457f0 Mon Sep 17 00:00:00 2001 From: nathanmarz Date: Sat, 11 Mar 2017 12:12:46 -0500 Subject: [PATCH] try forcing v2.0 of phantomjs in build --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 07be6ae..5ab7316 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,11 @@ lein: 2.7.1 cache: directories: - $HOME/.m2 +before_script: + - mkdir travis-phantomjs + - wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 + - tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs + - export PATH=$PWD/travis-phantomjs:$PATH script: - lein test -# - lein doo phantom test-build once + - lein doo phantom test-build once