File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,9 @@ function get_macos_matrix_include(array $branches) {
100
100
'branch ' => $ branch ,
101
101
'debug ' => $ debug ,
102
102
'zts ' => $ zts ,
103
- 'os ' => $ branch === 'master ' ? '13 ' : '12 ' ,
103
+ 'os ' => $ branch[ ' name ' ] === 'master ' ? '13 ' : '12 ' ,
104
104
'arch ' => 'X64 ' ,
105
+ 'test_jit ' => true ,
105
106
];
106
107
if ($ branch ['version ' ]['minor ' ] >= 4 || $ branch ['version ' ]['major ' ] >= 9 ) {
107
108
$ jobs [] = [
@@ -110,6 +111,7 @@ function get_macos_matrix_include(array $branches) {
110
111
'zts ' => $ zts ,
111
112
'os ' => '14 ' ,
112
113
'arch ' => 'ARM64 ' ,
114
+ 'test_jit ' => !$ zts ,
113
115
];
114
116
}
115
117
}
Original file line number Diff line number Diff line change @@ -256,6 +256,7 @@ jobs:
256
256
with :
257
257
testArtifacts : ${{ matrix.branch.name }}_${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}
258
258
- name : Test Tracing JIT
259
+ if : matrix.test_jit
259
260
uses : ./.github/actions/test-macos
260
261
with :
261
262
testArtifacts : ${{ matrix.branch.name }}_${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Tracing JIT
@@ -271,6 +272,7 @@ jobs:
271
272
-d zend_extension=opcache.so
272
273
-d opcache.enable_cli=1
273
274
- name : Test Function JIT
275
+ if : matrix.test_jit
274
276
uses : ./.github/actions/test-macos
275
277
with :
276
278
testArtifacts : ${{ matrix.branch.name }}_${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }} Function JIT
You can’t perform that action at this time.
0 commit comments