From 8d0933ca4bf2724f7a67471edb6b5efe2cdc02e1 Mon Sep 17 00:00:00 2001 From: Dhruv Date: Sun, 10 Aug 2014 12:10:59 +0200 Subject: [PATCH] [ticket/12962] Add setup-phantomjs-server.sh PHPBB3-12962 --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b2514d1d57..ebe2dfe8f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,7 +34,8 @@ install: before_script: - travis/setup-database.sh $DB $TRAVIS_PHP_VERSION - - phantomjs --webdriver=8910 + - pidof phantomjs || nohup phantomjs --webserver=8910 > /dev/null + - sleep 3 script: - travis/phing-sniff.sh $DB $TRAVIS_PHP_VERSION @@ -43,4 +44,4 @@ script: - travis/check-executable-files.sh $DB $TRAVIS_PHP_VERSION ./ - phpBB/vendor/bin/phpunit --configuration travis/phpunit-$DB-travis.xml - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.3.3' -a '$DB' = 'mysqli' -a '$TRAVIS_PULL_REQUEST' != 'false' ]; then git-tools/commit-msg-hook-range.sh origin/$TRAVIS_BRANCH..FETCH_HEAD; fi" - + - kill -9 `pidof phantomjs`