Skip to content

Commit d4fdfe7

Browse files
iluuu1994shivammathur
authored andcommitted
Attempted fix
1 parent 1056511 commit d4fdfe7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)