@@ -113,6 +113,7 @@ jobs:
113113 uses : ./.github/actions/test-linux
114114 with :
115115 testArtifacts : ${{ matrix.branch.name }}_${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Tracing JIT
116+ jitType : tracing
116117 runTestsParameters : >-
117118 ${{ matrix.run_tests_parameters }}
118119 -d zend_extension=opcache.so
@@ -133,12 +134,12 @@ jobs:
133134 uses : ./.github/actions/test-linux
134135 with :
135136 testArtifacts : ${{ matrix.branch.name }}_${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Function JIT
137+ jitType : function
136138 runTestsParameters : >-
137139 ${{ matrix.run_tests_parameters }}
138140 -d zend_extension=opcache.so
139141 -d opcache.enable_cli=1
140142 -d opcache.jit_buffer_size=16M
141- -d opcache.jit=1205
142143 - name : Verify generated files are up to date
143144 uses : ./.github/actions/verify-generated-files
144145 - name : Notify Slack
@@ -204,6 +205,7 @@ jobs:
204205 - name : Test Tracing JIT
205206 uses : ./.github/actions/test-linux
206207 with :
208+ jitType : tracing
207209 runTestsParameters : >-
208210 ${{ matrix.run_tests_parameters }}
209211 -d zend_extension=opcache.so
@@ -219,12 +221,12 @@ jobs:
219221 - name : Test Function JIT
220222 uses : ./.github/actions/test-linux
221223 with :
224+ jitType : function
222225 runTestsParameters : >-
223226 ${{ matrix.run_tests_parameters }}
224227 -d zend_extension=opcache.so
225228 -d opcache.enable_cli=1
226229 -d opcache.jit_buffer_size=16M
227- -d opcache.jit=1205
228230 - name : Notify Slack
229231 if : failure()
230232 uses : ./.github/actions/notify-slack
@@ -268,6 +270,7 @@ jobs:
268270 uses : ./.github/actions/test-macos
269271 with :
270272 testArtifacts : ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Tracing JIT
273+ jitType : tracing
271274 runTestsParameters : >-
272275 -d zend_extension=opcache.so
273276 -d opcache.enable_cli=1
@@ -285,12 +288,12 @@ jobs:
285288 uses : ./.github/actions/test-macos
286289 with :
287290 testArtifacts : ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Function JIT
291+ jitType : function
288292 runTestsParameters : >-
289293 -d zend_extension=opcache.so
290294 -d opcache.enable_cli=1
291295 -d opcache.protect_memory=1
292296 -d opcache.jit_buffer_size=16M
293- -d opcache.jit=1205
294297 - name : Verify generated files are up to date
295298 uses : ./.github/actions/verify-generated-files
296299 - name : Notify Slack
0 commit comments