Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions .github/workflows/macos-probe.yml

This file was deleted.

19 changes: 2 additions & 17 deletions template/managed/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y {{APT_DEPS}}

# Pinned to 2.36.0: setup-php 2.37.x stopped installing PHP on the
# macos-14 runners on 2026-06-12 (empty-variable cascade inside its
# brew path; minimal repro in ext-template's "macOS probe" workflow).
# Re-probe and unpin when upstream ships a fix.
- uses: shivammathur/setup-php@2.36.0
- uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
tools: none
Expand All @@ -62,13 +58,6 @@ jobs:
# 8.5 is the current stable; 8.4 is the most-deployed; 8.3 is
# security-only through end of 2026 but still widely installed.
php: ['8.3', '8.4', '8.5']
exclude:
# setup-php cannot currently install PHP 8.5 on the macos-14
# runners (2026-06-12: 2.37.x fails for every PHP version there,
# and 2.36.0 predates 8.5). Re-add this leg when ext-template's
# "macOS probe" workflow passes on @v2 again.
- os: macos-14
php: '8.5'
steps:
- uses: actions/checkout@v4

Expand All @@ -83,11 +72,7 @@ jobs:
# `true` when the extension needs nothing beyond Xcode CLT.
run: {{BREW_INSTALL}}

# Pinned to 2.36.0: setup-php 2.37.x stopped installing PHP on the
# macos-14 runners on 2026-06-12 (empty-variable cascade inside its
# brew path; minimal repro in ext-template's "macOS probe" workflow).
# Re-probe and unpin when upstream ships a fix.
- uses: shivammathur/setup-php@2.36.0
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: none
Expand Down
6 changes: 1 addition & 5 deletions template/managed/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,7 @@ jobs:
if: runner.os == 'macOS'
run: {{BREW_INSTALL}}

# Pinned to 2.36.0: setup-php 2.37.x stopped installing PHP on the
# macos-14 runners on 2026-06-12 (empty-variable cascade inside its
# brew path; minimal repro in ext-template's "macOS probe" workflow).
# Re-probe and unpin when upstream ships a fix.
- uses: shivammathur/setup-php@2.36.0
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: none
Expand Down
Loading