Commit 8b47ae8342a for php.net
commit 8b47ae8342a560593973b345feac3731069f720d
Author: Ilija Tovilo <ilija.tovilo@me.com>
Date: Tue Feb 3 13:28:39 2026 +0100
Make brew verbose, limit to 10 minutes
This step regularly locks up. Maybe --verbose will provide some insight. Also
limit the step to 10 minutes to avoid holding up resources.
diff --git a/.github/actions/brew/action.yml b/.github/actions/brew/action.yml
index a1b3e92f37f..b1e3efd088a 100644
--- a/.github/actions/brew/action.yml
+++ b/.github/actions/brew/action.yml
@@ -13,11 +13,17 @@ runs:
# Some packages exist on x86 but not arm, or vice versa.
# Install them with reinstall to avoid warnings.
- brew reinstall autoconf webp tidy-html5 libzip libsodium icu4c
- brew install \
+ brew reinstall -v \
+ autoconf \
+ webp \
+ tidy-html5 \
+ libzip \
+ libsodium \
+ icu4c
+ brew install -v \
bison \
re2c
- brew install \
+ brew install -v \
aspell \
bzip2 \
enchant \
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 019e779d56c..b3870fab571 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -367,6 +367,7 @@ jobs:
- name: Update clang
uses: ./.github/actions/macos-update-clang
- name: brew
+ timeout-minutes: 10
uses: ./.github/actions/brew
- name: ./configure
uses: ./.github/actions/configure-macos
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml
index 9a7a0ea4adb..53e94a33a0e 100644
--- a/.github/workflows/push.yml
+++ b/.github/workflows/push.yml
@@ -167,6 +167,7 @@ jobs:
- name: Update clang
uses: ./.github/actions/macos-update-clang
- name: brew
+ timeout-minutes: 10
uses: ./.github/actions/brew
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2