Skip to content

Commit 2b72baf

Browse files
committed
feat: build for armv5 and armv6
1 parent 6b5e6ff commit 2b72baf

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

.github/workflows/docker-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
with:
195195
context: ./
196196
file: ${{ matrix.dockerfile }}
197-
platforms: ${{ matrix.platforms || 'linux/amd64,linux/arm64,linux/arm/v7' }}
197+
platforms: ${{ matrix.platforms || 'linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7' }}
198198
push: ${{ github.ref_type == 'tag' && secrets[matrix.password_secret] != '' }}
199199
tags: ${{ steps.metadata.outputs.tags }}
200200
labels: ${{ steps.metadata.outputs.labels }}

.goreleaser.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ builds:
2222
- amd64
2323
- arm64
2424
- arm
25+
goarm:
26+
- "6"
27+
- "7"
2528
ignore:
2629
- goos: windows
2730
goarch: arm64
@@ -31,6 +34,8 @@ builds:
3134
goarch: arm64
3235
- goos: freebsd
3336
goarch: arm
37+
- goos: darwin
38+
goarch: arm
3439

3540
- id: beszel-agent
3641
binary: beszel-agent
@@ -52,6 +57,10 @@ builds:
5257
- mipsle
5358
- mips
5459
- ppc64le
60+
goarm:
61+
- "5"
62+
- "6"
63+
- "7"
5564
gomips:
5665
- hardfloat
5766
- softfloat
@@ -71,6 +80,8 @@ builds:
7180
gomips: hardfloat
7281
- goos: windows
7382
goarch: arm
83+
- goos: darwin
84+
goarch: arm
7485
- goos: darwin
7586
goarch: riscv64
7687
- goos: windows

0 commit comments

Comments
 (0)