From 0be07a987780cc49ae14ca7bfafbf800125b893d Mon Sep 17 00:00:00 2001 From: David Badura Date: Mon, 17 Feb 2025 14:14:09 +0100 Subject: [PATCH 1/2] use arm runner --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 99f5ba4..590679a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,10 +21,11 @@ jobs: strategy: matrix: + platform: [ 'linux/amd64', 'linux/arm64' ] version: [ '8.0', '8.1', '8.2', '8.3', '8.4' ] extensions: [ 'pcntl xdebug zip intl bcmath rdkafka pdo_pgsql pdo_mysql gd' ] - runs-on: ubuntu-latest + runs-on: ${{ startsWith(matrix.platform, 'linux/arm') && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }} steps: - name: Check out the repo @@ -52,7 +53,6 @@ jobs: with: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} - platforms: linux/amd64,linux/arm64 cache-from: | type=gha,scope=ci-cache type=gha,scope=release-cache From e957c88a7b5e5c47c785f4f6647a8ae467625324 Mon Sep 17 00:00:00 2001 From: David Badura Date: Mon, 17 Feb 2025 14:18:41 +0100 Subject: [PATCH 2/2] remove php8.0 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 590679a..d94b56b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,7 +22,7 @@ jobs: strategy: matrix: platform: [ 'linux/amd64', 'linux/arm64' ] - version: [ '8.0', '8.1', '8.2', '8.3', '8.4' ] + version: [ '8.1', '8.2', '8.3', '8.4' ] extensions: [ 'pcntl xdebug zip intl bcmath rdkafka pdo_pgsql pdo_mysql gd' ] runs-on: ${{ startsWith(matrix.platform, 'linux/arm') && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}