From 8cb8d0b7c70586ad94745c9016908cc7fb662cc6 Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Sat, 15 Aug 2026 17:27:27 +0200 Subject: [PATCH] [CI] Drop Windows from PHPUnit benchmark, keep Windows in CI tests --- .github/workflows/benchmark_phpunit.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmark_phpunit.yaml b/.github/workflows/benchmark_phpunit.yaml index c1bab0366ca..5e8af57a633 100644 --- a/.github/workflows/benchmark_phpunit.yaml +++ b/.github/workflows/benchmark_phpunit.yaml @@ -1,7 +1,7 @@ name: Benchmark PHPUnit # A/B wall-time benchmark: serial phpunit vs the Go parallel runner. -# Scheduled only (not on pull requests); runs every 2 hours on ubuntu + windows. +# Scheduled only (not on pull requests); runs every 2 hours on ubuntu. # Reminder: cron fires only from the default branch, so this starts running # once the file is on `main`. on: @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] php-versions: ['8.4', '8.5'] runs-on: ${{ matrix.os }}