Skip to content

Commit f991894

Browse files
authored
Merge pull request #92 from code0-tech/multi-arch-image-for-reticulum-builder
Setup multi-arch image for reticulum-builder
2 parents 777cebe + 52e3fc0 commit f991894

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-latest
15+
runs-on: ${{ matrix.runner || 'ubuntu-latest' }}
1616
strategy:
1717
fail-fast: false
1818
matrix:
@@ -26,8 +26,13 @@ jobs:
2626
tag_suffix: '-node-24.8'
2727
args: '--build-arg NODE_VERSION=24.8.0'
2828
- image: reticulum-builder
29-
tag_suffix: '-ruby-3.4.7'
29+
tag_suffix: '-ruby-3.4.7-amd64'
30+
args: '--build-arg RUBY_VERSION=3.4.7'
31+
runner: ubuntu-latest
32+
- image: reticulum-builder
33+
tag_suffix: '-ruby-3.4.7-arm64'
3034
args: '--build-arg RUBY_VERSION=3.4.7'
35+
runner: ubuntu-24.04-arm
3136
- image: ruby-postgres
3237
tag_suffix: '-ruby-3.4.7-postgres-16.1'
3338
args: '--build-arg RUBY_VERSION=3.4.7 --build-arg POSTGRES_VERSION=16.1'

0 commit comments

Comments
 (0)