mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Remove redundant CI JIT flags
These flags are already set from run-tests.php.
This commit is contained in:
@@ -185,10 +185,6 @@ jobs:
|
||||
-d opcache.jit_max_root_traces=100000 \
|
||||
-d opcache.jit_max_side_traces=100000 \
|
||||
-d opcache.jit_max_exit_counters=100000 \
|
||||
-d opcache.jit_hot_loop=1 \
|
||||
-d opcache.jit_hot_func=1 \
|
||||
-d opcache.jit_hot_return=1 \
|
||||
-d opcache.jit_hot_side_exit=1 \
|
||||
-d opcache.jit=tracing \
|
||||
-P -q -x -j2 \
|
||||
-g FAIL,BORK,LEAK,XLEAK \
|
||||
|
||||
4
.github/actions/test-linux/action.yml
vendored
4
.github/actions/test-linux/action.yml
vendored
@@ -47,10 +47,6 @@ runs:
|
||||
-d opcache.jit_max_root_traces=100000 \
|
||||
-d opcache.jit_max_side_traces=100000 \
|
||||
-d opcache.jit_max_exit_counters=100000 \
|
||||
-d opcache.jit_hot_loop=1 \
|
||||
-d opcache.jit_hot_func=1 \
|
||||
-d opcache.jit_hot_return=1 \
|
||||
-d opcache.jit_hot_side_exit=1 \
|
||||
-j$(/usr/bin/nproc) \
|
||||
-g FAIL,BORK,LEAK,XLEAK \
|
||||
--no-progress \
|
||||
|
||||
4
.github/actions/test-macos/action.yml
vendored
4
.github/actions/test-macos/action.yml
vendored
@@ -26,10 +26,6 @@ runs:
|
||||
-d opcache.jit_max_root_traces=100000 \
|
||||
-d opcache.jit_max_side_traces=100000 \
|
||||
-d opcache.jit_max_exit_counters=100000 \
|
||||
-d opcache.jit_hot_loop=1 \
|
||||
-d opcache.jit_hot_func=1 \
|
||||
-d opcache.jit_hot_return=1 \
|
||||
-d opcache.jit_hot_side_exit=1 \
|
||||
-j$(sysctl -n hw.ncpu) \
|
||||
-g FAIL,BORK,LEAK,XLEAK \
|
||||
--no-progress \
|
||||
|
||||
2
.github/scripts/windows/test_task.bat
vendored
2
.github/scripts/windows/test_task.bat
vendored
@@ -83,7 +83,7 @@ set OPENSSL_CONF=
|
||||
rem set SSLEAY_CONF=
|
||||
|
||||
rem prepare for OPcache
|
||||
if "%OPCACHE%" equ "1" set OPCACHE_OPTS=-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces=100000 -d opcache.jit_max_side_traces=100000 -d opcache.jit_max_exit_counters=100000 -d opcache.jit_hot_loop=1 -d opcache.jit_hot_func=1 -d opcache.jit_hot_return=1 -d opcache.jit_hot_side_exit=1 -d opcache.jit=tracing
|
||||
if "%OPCACHE%" equ "1" set OPCACHE_OPTS=-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces=100000 -d opcache.jit_max_side_traces=100000 -d opcache.jit_max_exit_counters=100000 -d opcache.jit=tracing
|
||||
rem work-around for failing to dl(mysqli) with OPcache (https://github.com/php/php-src/issues/8508)
|
||||
if "%OPCACHE%" equ "1" set OPCACHE_OPTS=%OPCACHE_OPTS% -d extension=mysqli
|
||||
|
||||
|
||||
4
.github/workflows/nightly.yml
vendored
4
.github/workflows/nightly.yml
vendored
@@ -383,10 +383,6 @@ jobs:
|
||||
echo opcache.jit_max_root_traces=100000 >> /etc/php.d/opcache.ini
|
||||
echo opcache.jit_max_side_traces=100000 >> /etc/php.d/opcache.ini
|
||||
echo opcache.jit_max_exit_counters=100000 >> /etc/php.d/opcache.ini
|
||||
echo opcache.jit_hot_loop=1 >> /etc/php.d/opcache.ini
|
||||
echo opcache.jit_hot_func=1 >> /etc/php.d/opcache.ini
|
||||
echo opcache.jit_hot_return=1 >> /etc/php.d/opcache.ini
|
||||
echo opcache.jit_hot_side_exit=1 >> /etc/php.d/opcache.ini
|
||||
echo memory_limit=-1 >> /etc/php.d/opcache.ini
|
||||
php -v
|
||||
- name: Test AMPHP
|
||||
|
||||
@@ -85,7 +85,7 @@ before_script:
|
||||
|
||||
# Run PHPs run-tests.php
|
||||
script:
|
||||
- travis_wait 60 ./travis/test.sh -d opcache.jit=tracing -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces=100000 -d opcache.jit_max_side_traces=100000 -d opcache.jit_max_exit_counters=100000 -d opcache.jit_hot_loop=1 -d opcache.jit_hot_func=1 -d opcache.jit_hot_return=1 -d opcache.jit_hot_side_exit=1
|
||||
- travis_wait 60 ./travis/test.sh -d opcache.jit=tracing -d opcache.jit_buffer_size=64M -d opcache.jit_max_root_traces=100000 -d opcache.jit_max_side_traces=100000 -d opcache.jit_max_exit_counters=100000
|
||||
- sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");'
|
||||
|
||||
after_success:
|
||||
|
||||
Reference in New Issue
Block a user