Skip to content

Commit fd99909

Browse files
committed
chore: slim down build targets to linux/darwin amd64+arm64 only
1 parent 4cce71e commit fd99909

File tree

2 files changed

+26
-31
lines changed

2 files changed

+26
-31
lines changed

.goreleaser.yaml

Lines changed: 25 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,24 @@ builds:
1313
targets:
1414
- darwin_amd64
1515
- darwin_arm64
16-
- linux_386
1716
- linux_amd64
18-
- linux_amd64_v3
19-
- linux_arm_5
20-
- linux_arm_6
21-
- linux_arm_7
2217
- linux_arm64
23-
- linux_mips_softfloat
24-
- linux_mips_hardfloat
25-
- linux_mipsle_softfloat
26-
- linux_mipsle_hardfloat
27-
- linux_mips64
28-
- linux_mips64le
29-
- linux_s390x
30-
- linux_riscv64
31-
- linux_loong64
32-
- freebsd_386
33-
- freebsd_amd64
34-
- windows_386
35-
- windows_amd64
36-
- windows_amd64_v3
37-
- windows_arm64
38-
- android_arm64
18+
# - linux_mips_softfloat
19+
# - linux_mips_hardfloat
20+
# - linux_mipsle_softfloat
21+
# - linux_mipsle_hardfloat
22+
# - linux_mips64
23+
# - linux_mips64le
24+
# - linux_s390x
25+
# - linux_riscv64
26+
# - linux_loong64
27+
# - freebsd_386
28+
# - freebsd_amd64
29+
# - windows_386
30+
# - windows_amd64
31+
# - windows_amd64_v3
32+
# - windows_arm64
33+
# - android_arm64
3934
ldflags:
4035
- "-s -w -X 'main.version={{ .Tag }}'"
4136

@@ -47,18 +42,18 @@ upx:
4742
lzma: true
4843
brute: true
4944

50-
- enabled: true
51-
goos: [windows]
52-
goarch: [amd64]
53-
compress: best
54-
lzma: true
55-
brute: true
45+
# - enabled: true
46+
# goos: [windows]
47+
# goarch: [amd64]
48+
# compress: best
49+
# lzma: true
50+
# brute: true
5651

5752
archives:
5853
- formats: ['tar.gz']
59-
format_overrides:
60-
- goos: windows
61-
formats: ['zip']
54+
# format_overrides:
55+
# - goos: windows
56+
# formats: ['zip']
6257

6358
checksum:
6459
name_template: 'checksums.txt'

cmd/greyproxy/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package main
22

33
var (
4-
version = "0.1.0"
4+
version = "0.1.1"
55
)

0 commit comments

Comments
 (0)