diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-10-14 09:04:39 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-10-14 09:45:11 +0200 |
commit | 345e8ad8222d8ca331c84b96fe2de1b5c0a5ac6f (patch) | |
tree | b7d45f53335373fe4e843a9e2f7a2442d913201f | |
parent | Merge pull request #3968 from prototech/ticket/13835 (diff) | |
download | phpbb-345e8ad8222d8ca331c84b96fe2de1b5c0a5ac6f.tar.gz phpbb-345e8ad8222d8ca331c84b96fe2de1b5c0a5ac6f.tar.bz2 phpbb-345e8ad8222d8ca331c84b96fe2de1b5c0a5ac6f.zip |
[ticket/14236] Disable Opcache on Travis when running the tests
PHPBB3-14236
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | travis/setup-php-extensions.sh | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2542898324..a91a95b3c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,4 +50,4 @@ script: - sh -c "if [ '$SLOWTESTS' != '1' ]; then phpBB/vendor/bin/phpunit --configuration travis/phpunit-$DB-travis.xml; fi" - sh -c "if [ '$SLOWTESTS' = '1' ]; then phpBB/vendor/bin/phpunit --configuration travis/phpunit-$DB-travis.xml --group slow; fi" - 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" - + - php -i | grep opcache diff --git a/travis/setup-php-extensions.sh b/travis/setup-php-extensions.sh index c0defe44ef..d9544858b7 100755 --- a/travis/setup-php-extensions.sh +++ b/travis/setup-php-extensions.sh @@ -48,6 +48,9 @@ then echo 'Enabling APC PHP extension' register_php_extension 'apc' "$php_ini_file" echo 'apc.enable_cli=1' >> "$php_ini_file" +else + echo 'Disabling Opcache' + echo 'opcache.enable=0' >> "$php_ini_file" fi # redis |