From d88118dd0138a245b226bd40ad5ecebdeb7816e9 Mon Sep 17 00:00:00 2001 From: Eser DENIZ Date: Sun, 19 Jan 2025 12:57:01 +0100 Subject: [PATCH] feat: linux arm64 --- .github/workflows/build-php.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-php.yml b/.github/workflows/build-php.yml index 71119449..86ff3a14 100644 --- a/.github/workflows/build-php.yml +++ b/.github/workflows/build-php.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: version: ["8.1", "8.2", "8.3", "8.4"] - os: ["macos-13", "macos-latest", "windows-latest", "ubuntu-latest"] + os: [ "macos-13", "macos-latest", "ubuntu-latest", "ubuntu-24.04-arm" ] continue-on-error: true @@ -48,7 +48,7 @@ jobs: run: echo "SPC_BUILD_ARCH=x64" >> $GITHUB_ENV - shell: bash - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-24.04-arm' run: echo "SPC_BUILD_ARCH=arm64" >> $GITHUB_ENV - shell: bash @@ -66,7 +66,7 @@ jobs: run: echo "SPC_BUILD_OS=win" >> $GITHUB_ENV - shell: bash - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-latest' || matrix.os == 'ubuntu-24.04-arm' run: echo "SPC_BUILD_OS=linux" >> $GITHUB_ENV - name: Setup system PHP