diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-10-14 10:41:06 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-14 10:41:06 +0200 |
commit | ccb3d0ac78db25f60983e1c3211f0220cbee93f8 (patch) | |
tree | 4bdec233c7ccd1ae7b62762ba15362b10cea693f /travis/setup-php-extensions.sh | |
parent | 657216475468051464b25e12160f1749a71c1cf9 (diff) | |
parent | 345e8ad8222d8ca331c84b96fe2de1b5c0a5ac6f (diff) | |
download | forums-ccb3d0ac78db25f60983e1c3211f0220cbee93f8.tar forums-ccb3d0ac78db25f60983e1c3211f0220cbee93f8.tar.gz forums-ccb3d0ac78db25f60983e1c3211f0220cbee93f8.tar.bz2 forums-ccb3d0ac78db25f60983e1c3211f0220cbee93f8.tar.xz forums-ccb3d0ac78db25f60983e1c3211f0220cbee93f8.zip |
Merge pull request #3973 from Nicofuma/ticket/14236
[ticket/14236] Disable Opcache on Travis when running the tests
Diffstat (limited to 'travis/setup-php-extensions.sh')
-rwxr-xr-x | travis/setup-php-extensions.sh | 3 |
1 files changed, 3 insertions, 0 deletions
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 |