Skip to content

Commit c228cda

Browse files
committed
fix(ci): exclude linux/arm (32-bit) from GoReleaser
Fiber v3 uses math.MaxUint32 in etag middleware which overflows int on 32-bit platforms. Exclude linux/arm/v7 until upstream fixes it.
1 parent 12f63f4 commit c228cda

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.goreleaser.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ builds:
2929
goarch: arm
3030
- goos: windows
3131
goarch: arm64
32+
# 32-bit ARM: Fiber v3 uses math.MaxUint32 which overflows int on 32-bit
33+
- goos: linux
34+
goarch: arm
3235
ldflags:
3336
- -s -w
3437
- -X main.version={{.Version}}

0 commit comments

Comments
 (0)