File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -376,11 +376,11 @@ jobs:
376376 matrix :
377377 debug : [true, false]
378378 zts : [true, false]
379- os : ['13 ', inputs.macos_arm64_version ]
379+ arch : ['X64 ', 'ARM64' ]
380380 exclude :
381- - os : ${{ !inputs.run_macos_arm64 && inputs.macos_arm64_version || '*never*' }}
382- name : " MACOS_${{ matrix.os == '13' && 'X64' || 'ARM64' }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
383- runs-on : macos-${{ matrix.os }}
381+ - arch : ${{ !inputs.run_macos_arm64 && 'ARM64' || '*never*' }}
382+ name : " MACOS_${{ matrix.arch }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
383+ runs-on : macos-${{ matrix.arch == 'X64' && '13' || inputs.macos_arm64_version }}
384384 steps :
385385 - name : git checkout
386386 uses : actions/checkout@v5
@@ -403,7 +403,7 @@ jobs:
403403 - name : Test
404404 uses : ./.github/actions/test-macos
405405 - name : Test Tracing JIT
406- if : matrix.os != inputs.macos_arm64_version || !matrix.zts
406+ if : matrix.arch == 'X64' || !matrix.zts
407407 uses : ./.github/actions/test-macos
408408 with :
409409 jitType : tracing
@@ -415,7 +415,7 @@ jobs:
415415 runTestsParameters : >-
416416 -d opcache.enable_cli=1
417417 - name : Test Function JIT
418- if : matrix.os != inputs.macos_arm64_version || !matrix.zts
418+ if : matrix.arch == 'X64' || !matrix.zts
419419 uses : ./.github/actions/test-macos
420420 with :
421421 jitType : function
You can’t perform that action at this time.
0 commit comments