diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2014-02-04 00:13:36 +0100 | 
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2014-02-04 00:13:36 +0100 | 
| commit | b6d45c5d71dcec6d1c60fc6919d969d1e8b274bd (patch) | |
| tree | bd1bd9b1bc5824f7849b8d5d3244a4b0babadb74 | |
| parent | 116ff19185fd50a30abdc04a8200c330589088d4 (diff) | |
| download | forums-b6d45c5d71dcec6d1c60fc6919d969d1e8b274bd.tar forums-b6d45c5d71dcec6d1c60fc6919d969d1e8b274bd.tar.gz forums-b6d45c5d71dcec6d1c60fc6919d969d1e8b274bd.tar.bz2 forums-b6d45c5d71dcec6d1c60fc6919d969d1e8b274bd.tar.xz forums-b6d45c5d71dcec6d1c60fc6919d969d1e8b274bd.zip | |
[ticket/11985] Do not try to setup PHP extensions on HHVM.
PHPBB3-11985
| -rw-r--r-- | .travis.yml | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/.travis.yml b/.travis.yml index a97e25240a..cbc5b63bff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ services:  install:    - sh -c "if [ '$DB' = 'mariadb' ]; then travis/setup-mariadb.sh; fi"    - sh -c "if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.3.19', '>=');"` = "1" ]; then travis/setup-webserver.sh; fi" -  - travis/setup-php-extensions.sh +  - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/setup-php-extensions.sh; fi"    - cd phpBB    - php ../composer.phar install --dev --no-interaction --prefer-source    - cd .. | 
