diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-02-04 01:38:43 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-02-04 02:16:00 +0100 |
commit | ac954a7c4b6daefe1efcc4ebe047c8818ca4497a (patch) | |
tree | 6c8d96a5ef48322964d347a72872bf880c5ab0ef | |
parent | b6d45c5d71dcec6d1c60fc6919d969d1e8b274bd (diff) | |
download | forums-ac954a7c4b6daefe1efcc4ebe047c8818ca4497a.tar forums-ac954a7c4b6daefe1efcc4ebe047c8818ca4497a.tar.gz forums-ac954a7c4b6daefe1efcc4ebe047c8818ca4497a.tar.bz2 forums-ac954a7c4b6daefe1efcc4ebe047c8818ca4497a.tar.xz forums-ac954a7c4b6daefe1efcc4ebe047c8818ca4497a.zip |
[ticket/12141] PHP extension setup must happen before webserver + PHP-FPM.
PHPBB3-12141
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index cbc5b63bff..79a6635cbc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,8 +16,8 @@ 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" - sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/setup-php-extensions.sh; fi" + - sh -c "if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.3.19', '>=');"` = "1" ]; then travis/setup-webserver.sh; fi" - cd phpBB - php ../composer.phar install --dev --no-interaction --prefer-source - cd .. |