Skip to content

Commit 1ae52a3

Browse files
authored
Merge pull request #21 from patchlevel/use-arm-runner
use arm runner
2 parents d331a93 + e957c88 commit 1ae52a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ jobs:
2121

2222
strategy:
2323
matrix:
24-
version: [ '8.0', '8.1', '8.2', '8.3', '8.4' ]
24+
platform: [ 'linux/amd64', 'linux/arm64' ]
25+
version: [ '8.1', '8.2', '8.3', '8.4' ]
2526
extensions: [ 'pcntl xdebug zip intl bcmath rdkafka pdo_pgsql pdo_mysql gd' ]
2627

27-
runs-on: ubuntu-latest
28+
runs-on: ${{ startsWith(matrix.platform, 'linux/arm') && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
2829

2930
steps:
3031
- name: Check out the repo
@@ -52,7 +53,6 @@ jobs:
5253
with:
5354
tags: ${{ steps.meta.outputs.tags }}
5455
labels: ${{ steps.meta.outputs.labels }}
55-
platforms: linux/amd64,linux/arm64
5656
cache-from: |
5757
type=gha,scope=ci-cache
5858
type=gha,scope=release-cache

0 commit comments

Comments
 (0)