-
Notifications
You must be signed in to change notification settings - Fork 570
/
.goreleaser.yml
99 lines (89 loc) · 1.78 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
project_name: supervisord
env:
- GO111MODULE=on
before:
hooks:
- go generate ./...
- go mod download
builds:
- id: dynamic
binary: supervisord
env:
- CGO_ENABLED=0
ldflags:
- "-s -w"
flags:
- -tags=release
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
- arm
goarm:
- "6"
- "7"
- id: static
binary: supervisord
env:
- CGO_ENABLED=1
ldflags:
- "-linkmode external -extldflags -static"
flags:
- -tags=release
goos:
- linux
goarch:
- amd64
- arm64
overrides:
- goos: linux
goarch: amd64
env:
- CC=gcc
- goos: linux
goarch: arm64
env:
- CC=aarch64-linux-gnu-gcc
hooks:
post:
- cmd: upx "{{ .Path }}"
archives:
- id: archive_multi
builds: [dynamic]
name_template: >-
{{ .ProjectName }}_{{ .Version }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
format: tar.gz
format_overrides:
- goos: windows
format: zip
wrap_in_directory: true
files:
- none*
- id: archive_static
builds: [static]
name_template: >-
{{ .ProjectName }}_static_{{ .Version }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
format: tar.gz
wrap_in_directory: true
files:
- none*
release:
github:
owner: ochinchina
name: supervisord
draft: false
prerelease: auto
name_template: "{{.ProjectName}}-v{{.Version}}"