Commit 046ffa25758 for php.net

commit 046ffa257581d6f1a709e9fbc4638793c2ac7e22
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date:   Fri Apr 24 01:09:36 2026 +0200

    [skip ci] Restrict Windows+Clang build to PHP 8.6

diff --git a/.github/matrix.php b/.github/matrix.php
index 18c2ef1269b..eb10492d17f 100644
--- a/.github/matrix.php
+++ b/.github/matrix.php
@@ -148,7 +148,7 @@ function select_jobs($repository, $trigger, $nightly, $labels, $php_version, $re
         if ($all_variations) {
             $matrix[] = ['asan' => true, 'opcache' => true, 'x64' => true, 'zts' => true];
             $matrix[] = ['asan' => false, 'opcache' => false, 'x64' => false, 'zts' => false];
-            if (version_compare($php_version, '8.5', '>=')) {
+            if (version_compare($php_version, '8.6', '>=')) {
                 $matrix[] = ['asan' => false, 'opcache' => true, 'x64' => true, 'zts' => true, 'clang' => true];
             }
         }