@@ -79,14 +79,12 @@ jobs:
79
79
- name : Test
80
80
uses : ./.github/actions/test-linux
81
81
with :
82
- testArtifacts : ${{ matrix.branch.name }}_${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}
83
82
runTestsParameters : >-
84
83
${{ matrix.run_tests_parameters }}
85
84
idleCpu : ${{ matrix.asan && 'true' || 'false' }}
86
85
- name : Test Tracing JIT
87
86
uses : ./.github/actions/test-linux
88
87
with :
89
- testArtifacts : ${{ matrix.branch.name }}_${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Tracing JIT
90
88
jitType : tracing
91
89
runTestsParameters : >-
92
90
${{ matrix.run_tests_parameters }}
95
93
- name : Test OpCache
96
94
uses : ./.github/actions/test-linux
97
95
with :
98
- testArtifacts : ${{ matrix.branch.name }}_${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} OpCache
99
96
runTestsParameters : >-
100
97
${{ matrix.run_tests_parameters }}
101
98
-d zend_extension=opcache.so
@@ -106,7 +103,6 @@ jobs:
106
103
if : matrix.test_function_jit
107
104
uses : ./.github/actions/test-linux
108
105
with :
109
- testArtifacts : ${{ matrix.branch.name }}_${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Function JIT
110
106
jitType : function
111
107
runTestsParameters : >-
112
108
${{ matrix.run_tests_parameters }}
@@ -226,12 +222,9 @@ jobs:
226
222
run : sudo make install
227
223
- name : Test
228
224
uses : ./.github/actions/test-macos
229
- with :
230
- testArtifacts : ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}
231
225
- name : Test Tracing JIT
232
226
uses : ./.github/actions/test-macos
233
227
with :
234
- testArtifacts : ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Tracing JIT
235
228
jitType : tracing
236
229
runTestsParameters : >-
237
230
-d zend_extension=opcache.so
@@ -240,15 +233,13 @@ jobs:
240
233
- name : Test OpCache
241
234
uses : ./.github/actions/test-macos
242
235
with :
243
- testArtifacts : ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} OpCache
244
236
runTestsParameters : >-
245
237
-d zend_extension=opcache.so
246
238
-d opcache.enable_cli=1
247
239
-d opcache.protect_memory=1
248
240
- name : Test Function JIT
249
241
uses : ./.github/actions/test-macos
250
242
with :
251
- testArtifacts : ${{ matrix.branch.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Function JIT
252
243
jitType : function
253
244
runTestsParameters : >-
254
245
-d zend_extension=opcache.so
0 commit comments