From 68089388340509962c1526a38de0c36f5581eddf Mon Sep 17 00:00:00 2001 From: Mike Little Date: Thu, 9 Oct 2025 15:15:28 +0100 Subject: [PATCH] Add PHP 8.4 build targets Add PHP 8.4 build targets for Linux (arm64, amd64) and macOS (arm64, amd64) in CI workflow - Update .github/workflows/build.yml to include PHP 8.4 builds for: - aarch64-unknown-linux-gnu (linux/arm64, trixie) - x86_64-unknown-linux-gnu (linux/amd64, trixie) - aarch64-apple-darwin (macOS arm64) - x86_64-apple-darwin (macOS amd64) --- .github/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e9e5e32..9fe16a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,6 +62,18 @@ jobs: php-version: '8.3' distro: bookworm builder: ubuntu-latest + - + target: aarch64-unknown-linux-gnu + platform: linux/arm64 + php-version: '8.4' + distro: trixie + builder: buildjet-4vcpu-ubuntu-2204-arm + - + target: x86_64-unknown-linux-gnu + platform: linux/amd64 + php-version: '8.4' + distro: trixie + builder: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v1 @@ -144,6 +156,12 @@ jobs: - target: x86_64-apple-darwin php-version: '8.3' + - + target: aarch64-apple-darwin + php-version: '8.4' + - + target: x86_64-apple-darwin + php-version: '8.4' steps: - name: Checkout uses: actions/checkout@v1