summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-08-29 11:23:11 +0100
committerGreg Roach <fisharebest@gmail.com>2016-08-29 11:23:11 +0100
commitae1e553041dd10ff855bbbbdbdd06de3b2b0b3a9 (patch)
tree6b2365c2807dd4c1a3b8a8de15802e1b97417bca /.travis.yml
parent5e772ab9e7edb1fdedb724e8b9bf26ec31e0c6df (diff)
downloadwebtrees-ae1e553041dd10ff855bbbbdbdd06de3b2b0b3a9.tar.gz
webtrees-ae1e553041dd10ff855bbbbdbdd06de3b2b0b3a9.tar.bz2
webtrees-ae1e553041dd10ff855bbbbdbdd06de3b2b0b3a9.zip
Travis / PHP 7.1
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 6c53591222..ed895e00fd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,10 +20,9 @@ cache:
before_script:
- travis_retry composer config github-oauth.github.com "${GITHUB_OAUTH_TOKEN}"
- - if [ "$(phpenv global)" != "hhvm" ]; then cp $HOME/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini /tmp/; fi
- - if [ "$(phpenv global)" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi
+ - if [ -f "$HOME/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini" ]; then cp $HOME/.phpenv/versions/$(phpenv global)/etc/conf.d/xdebug.ini /tmp/; phpenv config-rm xdebug.ini; fi
- travis_retry composer update
- - if [ "$(phpenv global)" != "hhvm" ]; then phpenv config-add /tmp/xdebug.ini; fi
+ - if [ -f "/tmp/xdebug.ini" ]; then phpenv config-add /tmp/xdebug.ini; fi
script:
- vendor/bin/phpunit --coverage-clover tests/clover.xml