From 118ca088a8628326caf0a82ee174c2e1ac3ac37b Mon Sep 17 00:00:00 2001 From: Jorg Sowa Date: Wed, 14 May 2025 17:02:24 +0200 Subject: [PATCH] replaced macos13 with macos15 in nightly --- .github/workflows/nightly.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 1b1532af7f79..89742f4737aa 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -360,10 +360,11 @@ jobs: matrix: debug: [true, false] zts: [true, false] - os: ['13', '14'] + os: ['14', '15'] exclude: - os: ${{ !inputs.run_macos_arm64 && '14' || '*never*' }} - name: "MACOS_${{ matrix.os == '13' && 'X64' || 'ARM64' }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}" + - os: ${{ !inputs.run_macos_arm64 && '15' || '*never*' }} + name: "MACOS_ARM64_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}" runs-on: macos-${{ matrix.os }} steps: - name: git checkout @@ -387,7 +388,7 @@ jobs: - name: Test uses: ./.github/actions/test-macos - name: Test Tracing JIT - if: matrix.os != '14' || !matrix.zts + if: !matrix.zts uses: ./.github/actions/test-macos with: jitType: tracing @@ -401,7 +402,7 @@ jobs: -d zend_extension=opcache.so -d opcache.enable_cli=1 - name: Test Function JIT - if: matrix.os != '14' || !matrix.zts + if: !matrix.zts uses: ./.github/actions/test-macos with: jitType: function