Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ jobs:

strategy:
matrix:
version: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]
platform: [ 'linux/amd64', 'linux/arm64' ]
version: [ '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
Expand Down Expand Up @@ -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
Expand Down
Loading