From 42581a335cd9da42364c370002432b22c4f9c106 Mon Sep 17 00:00:00 2001 From: Shubham Chaturvedi Date: Fri, 11 Sep 2026 23:42:18 +0000 Subject: [PATCH] fix: run test-server on arm64 macOS runner The shivammathur/php tap and homebrew-core no longer publish x86_64 macOS bottles, so setup-php on the Intel macos-14-large runner falls back to building PHP and its dependency chain (including LLVM) from source, which trips setup-php's 180s no-output watchdog and fails the job. The arm64 runner pours the prebuilt arm64_sonoma bottle instead. --- .github/workflows/test-server.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-server.yml b/.github/workflows/test-server.yml index b60c2167..7431e5f8 100644 --- a/.github/workflows/test-server.yml +++ b/.github/workflows/test-server.yml @@ -12,7 +12,7 @@ on: jobs: test-server: - runs-on: macos-14-large + runs-on: macos-14-xlarge permissions: id-token: write contents: read