Skip to content

Commit 81319b6

Browse files
committed
remove linux i386 from builds
1 parent f10150c commit 81319b6

2 files changed

Lines changed: 16 additions & 14 deletions

File tree

.goreleaser-self.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# This is an example .goreleaser.yml file with some sensible defaults.
32
# Make sure to check the documentation at https://goreleaser.com
43
before:
@@ -14,6 +13,9 @@ builds:
1413
goos:
1514
- linux
1615
- darwin
16+
ignore:
17+
- goos: linux
18+
goarch: "386"
1719
binary: turso
1820
main: ./cmd/turso
1921
flags:
@@ -33,23 +35,22 @@ archives:
3335
{{ .ProjectName }}_
3436
{{- title .Os }}_
3537
{{- if eq .Arch "amd64" }}x86_64
36-
{{- else if eq .Arch "386" }}i386
3738
{{- else }}{{ .Arch }}{{ end }}
3839
{{- if .Arm }}v{{ .Arm }}{{ end }}
3940
# use zip for windows archives
4041
format_overrides:
41-
- goos: windows
42-
format: zip
42+
- goos: windows
43+
format: zip
4344
checksum:
44-
name_template: 'checksums.txt'
45+
name_template: "checksums.txt"
4546
snapshot:
4647
name_template: "{{ incpatch .Version }}-next"
4748
changelog:
4849
sort: asc
4950
filters:
5051
exclude:
51-
- '^docs:'
52-
- '^test:'
52+
- "^docs:"
53+
- "^test:"
5354

5455
# The lines beneath this are called `modelines`. See `:help modeline`
5556
# Feel free to remove those if you don't want/use them.

.goreleaser.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# This is an example .goreleaser.yml file with some sensible defaults.
32
# Make sure to check the documentation at https://goreleaser.com
43
before:
@@ -14,6 +13,9 @@ builds:
1413
goos:
1514
- linux
1615
- darwin
16+
ignore:
17+
- goos: linux
18+
goarch: "386"
1719
binary: turso
1820
main: ./cmd/turso
1921
flags:
@@ -33,23 +35,22 @@ archives:
3335
{{ .ProjectName }}_
3436
{{- title .Os }}_
3537
{{- if eq .Arch "amd64" }}x86_64
36-
{{- else if eq .Arch "386" }}i386
3738
{{- else }}{{ .Arch }}{{ end }}
3839
{{- if .Arm }}v{{ .Arm }}{{ end }}
3940
# use zip for windows archives
4041
format_overrides:
41-
- goos: windows
42-
format: zip
42+
- goos: windows
43+
format: zip
4344
checksum:
44-
name_template: 'checksums.txt'
45+
name_template: "checksums.txt"
4546
snapshot:
4647
name_template: "{{ incpatch .Version }}-next"
4748
changelog:
4849
sort: asc
4950
filters:
5051
exclude:
51-
- '^docs:'
52-
- '^test:'
52+
- "^docs:"
53+
- "^test:"
5354

5455
brews:
5556
- name: turso

0 commit comments

Comments
 (0)