Commit d2493f68075 for php.net

commit d2493f6807594fa50d121f4258512e6731fa06ce
Author: Máté Kocsis <kocsismate@woohoolabs.com>
Date:   Sun Sep 20 08:50:32 2026 +0200

    Restore JIT benchmark runs

    The JIT config was accidentally removed in https://github.com/php/php-src/commit/f009ad0df88760fa5a773bf6ad03825d9339818d

diff --git a/.github/workflows/real-time-benchmark.yml b/.github/workflows/real-time-benchmark.yml
index 559eba5fd0b..4147157ccfc 100644
--- a/.github/workflows/real-time-benchmark.yml
+++ b/.github/workflows/real-time-benchmark.yml
@@ -214,6 +214,21 @@ jobs:

             PHP_JIT=0
           EOF
+      - name: Setup PHP config - benchmarked PHP version with JIT
+        if: env.JIT == '1'
+        run: |
+          set -e
+
+          cat << EOF > ./php-version-benchmarks/config/php/this_jit.ini
+            PHP_NAME="PHP - ${{ env.BRANCH }} (JIT)"
+            PHP_ID=php_${{ env.ID }}_jit
+
+            PHP_REPO=${{ github.server_url }}/${{ env.REPOSITORY }}.git
+            PHP_BRANCH=${{ env.BRANCH }}
+            PHP_COMMIT=${{ env.COMMIT }}
+
+            PHP_JIT=${{ env.JIT }}
+          EOF
       - name: Setup test config
         run: |
           set -e