Skip to content

Commit

Permalink
Enable JIT on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Jul 8, 2020
1 parent 01e6386 commit ab7b5d2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Expand Up @@ -26,8 +26,12 @@ cache:
- $HOME/.composer/cache
- $HOME/.cache/composer

install:
before_install:
- phpenv config-rm xdebug.ini || true;
- phpenv config-add travis-php.ini;
- php -m;

install:
- composer validate --strict;
- |
sed -i 's/"bin-compat" : "full"/"bin-compat" : "auto"/g' composer.json;
Expand Down
2 changes: 2 additions & 0 deletions travis-php.ini
@@ -1,2 +1,4 @@
opcache.enable=1
opcache.enable_cli=1
opcache.jit=1255
opcache.jit_buffer_size=256M

0 comments on commit ab7b5d2

Please sign in to comment.