1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-19 07:08:09 +01:00

[ticket/12141] PHP extension setup must happen before webserver + PHP-FPM.

PHPBB3-12141
This commit is contained in:
Andreas Fischer 2014-02-04 01:38:43 +01:00
parent b6d45c5d71
commit ac954a7c4b

View File

@ -16,8 +16,8 @@ services:
install: install:
- sh -c "if [ '$DB' = 'mariadb' ]; then travis/setup-mariadb.sh; fi" - 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 [ '$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 - cd phpBB
- php ../composer.phar install --dev --no-interaction --prefer-source - php ../composer.phar install --dev --no-interaction --prefer-source
- cd .. - cd ..