Skip to content

Commit 118ca08

Browse files
committed
replaced macos13 with macos15 in nightly
1 parent 4122daa commit 118ca08

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/nightly.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,11 @@ jobs:
360360
matrix:
361361
debug: [true, false]
362362
zts: [true, false]
363-
os: ['13', '14']
363+
os: ['14', '15']
364364
exclude:
365365
- os: ${{ !inputs.run_macos_arm64 && '14' || '*never*' }}
366-
name: "MACOS_${{ matrix.os == '13' && 'X64' || 'ARM64' }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
366+
- os: ${{ !inputs.run_macos_arm64 && '15' || '*never*' }}
367+
name: "MACOS_ARM64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
367368
runs-on: macos-${{ matrix.os }}
368369
steps:
369370
- name: git checkout
@@ -387,7 +388,7 @@ jobs:
387388
- name: Test
388389
uses: ./.github/actions/test-macos
389390
- name: Test Tracing JIT
390-
if: matrix.os != '14' || !matrix.zts
391+
if: !matrix.zts
391392
uses: ./.github/actions/test-macos
392393
with:
393394
jitType: tracing
@@ -401,7 +402,7 @@ jobs:
401402
-d zend_extension=opcache.so
402403
-d opcache.enable_cli=1
403404
- name: Test Function JIT
404-
if: matrix.os != '14' || !matrix.zts
405+
if: !matrix.zts
405406
uses: ./.github/actions/test-macos
406407
with:
407408
jitType: function

0 commit comments

Comments
 (0)