Skip to content

Commit f1d1d3d

Browse files
chore: Ignore Windows ARM 32bits builds in GoReleaser configuration (#4195)
* Add Windows ARM builds to GoReleaser configuration - Add windows/arm build targets for all binaries - Enables ARM64 Windows support for go-feature-flag, relayproxy, lint, cli, and editor * Add Windows ARM builds to GoReleaser configuration - Add windows/arm build targets for all binaries - Enables ARM64 Windows support for go-feature-flag, relayproxy, lint, cli, and editor
1 parent d015475 commit f1d1d3d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.goreleaser.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ builds:
3232
- goos: linux
3333
goarch: arm
3434
goarm: 6
35+
- goos: windows
36+
goarch: arm
3537

3638
- id: go-feature-flag
3739
main: ./cmd/relayproxy
@@ -56,6 +58,8 @@ builds:
5658
- goos: linux
5759
goarch: arm
5860
goarm: 6
61+
- goos: windows
62+
goarch: arm
5963

6064
- id: go-feature-flag-lint
6165
main: ./cmd/lint
@@ -80,6 +84,8 @@ builds:
8084
- goos: linux
8185
goarch: arm
8286
goarm: 6
87+
- goos: windows
88+
goarch: arm
8389

8490
- id: go-feature-flag-cli
8591
main: ./cmd/cli
@@ -104,6 +110,8 @@ builds:
104110
- goos: linux
105111
goarch: arm
106112
goarm: 6
113+
- goos: windows
114+
goarch: arm
107115

108116
- id: go-feature-flag-editor
109117
main: ./cmd/editor
@@ -123,6 +131,8 @@ builds:
123131
- goos: linux
124132
goarch: arm
125133
goarm: 6
134+
- goos: windows
135+
goarch: arm
126136

127137
# Build an AWS lambda compatible binary
128138
- id: go-feature-flag-lambda

0 commit comments

Comments
 (0)