Commit bed2aa9375a for php.net

commit bed2aa9375a88dda5a33021f0341993bd020d935
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date:   Thu Jul 23 21:13:09 2026 +0200

    [skip ci] Revert "CI: Enable JIT testing on Apple Silicon ZTS 8.6+"

    This reverts commit fa47ae16a1778523e9ef3e8ca89a2ead6427b131.

    On macOS in GitHub Actions, pthread_jit_write_protect_supported_np() returns
    false. So, there's really no point in running JIT with it in the first place.

    We'll still need to tweak some tests when they explicitly enable the JIT.

diff --git a/.github/matrix.php b/.github/matrix.php
index eefb27e5ba5..7970442d705 100644
--- a/.github/matrix.php
+++ b/.github/matrix.php
@@ -127,19 +127,7 @@ function select_jobs($repository, $trigger, $nightly, $labels, $php_version, $re
         $test_arm = version_compare($php_version, '8.4', '>=');
         $jobs['MACOS']['matrix'] = $all_variations
             ? ['arch' => $test_arm ? ['X64', 'ARM64'] : ['X64'], 'debug' => [true, false], 'zts' => [true, false]]
-            : ['include' => [['arch' => $test_arm ? 'ARM64' : 'X64', 'debug' => true, 'zts' => false, 'jit' => true]]];
-        if ($all_variations) {
-            // Set the jit variable on X64 jobs
-            $jobs['MACOS']['matrix']['include'][] = ['arch' => 'X64', 'jit' => true];
-            if ($test_arm) {
-                // Set the jit variable on ARM64 NTS jobs
-                $jobs['MACOS']['matrix']['include'][] = ['arch' => 'ARM64', 'zts' => false, 'jit' => true];
-                // Set the jit variable on ARM64 ZTS jobs on 8.6+
-                if (version_compare($php_version, '8.6', '>=')) {
-                    $jobs['MACOS']['matrix']['include'][] = ['arch' => 'ARM64', 'zts' => true, 'jit' => true];
-                }
-            }
-        }
+            : ['include' => [['arch' => $test_arm ? 'ARM64' : 'X64', 'debug' => true, 'zts' => false]]];
         $jobs['MACOS']['config']['arm64_version'] = version_compare($php_version, '8.4', '>=') ? '15' : '14';
     }
     if ($all_jobs || $test_msan) {
diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml
index b51dfbd957c..e269ed33640 100644
--- a/.github/workflows/test-suite.yml
+++ b/.github/workflows/test-suite.yml
@@ -345,18 +345,18 @@ jobs:
         if: ${{ inputs.all_variations }}
         uses: ./.github/actions/test-macos
       - name: Test Tracing JIT
-        if: ${{ matrix.jit }}
+        if: ${{ matrix.arch == 'X64' || !matrix.zts }}
         uses: ./.github/actions/test-macos
         with:
           enableOpcache: true
           jitType: tracing
       - name: Test OpCache
-        if: ${{ inputs.all_variations }}
+        if: ${{ inputs.all_variations || (matrix.arch == 'ARM64' && matrix.zts) }}
         uses: ./.github/actions/test-macos
         with:
           enableOpcache: true
       - name: Test Function JIT
-        if: ${{ inputs.all_variations && matrix.jit }}
+        if: ${{ inputs.all_variations && (matrix.arch == 'X64' || !matrix.zts) }}
         uses: ./.github/actions/test-macos
         with:
           enableOpcache: true