-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy path.goreleaser.yml
More file actions
270 lines (250 loc) · 8.91 KB
/
.goreleaser.yml
File metadata and controls
270 lines (250 loc) · 8.91 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
version: 2
project_name: golangci-lint
builds:
- binary: golangci-lint
main: ./cmd/golangci-lint/
flags:
- -trimpath
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{.Date}}
env:
- CGO_ENABLED=0
goos:
- darwin
- windows
- linux
- freebsd
- netbsd
- illumos
goarch:
- amd64
- arm64
- arm
- 386
- ppc64le
- s390x
- mips64
- mips64le
- riscv64
- loong64
goarm:
- 6
- 7
gomips:
- hardfloat
ignore:
- goos: darwin
goarch: 386
# Deprecated in go1.25, Removed in go1.26
# https://go.dev/doc/go1.25#windows
- goos: windows
goarch: arm
archives:
- formats: [ 'tar.gz' ]
wrap_in_directory: true
format_overrides:
- goos: windows
formats: [ 'zip' ]
name_template: '{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
files:
- LICENSE
- README.md
snapshot:
version_template: SNAPSHOT-{{ .Commit }}
checksum:
disable: false
name_template: '{{ .ProjectName }}-{{ .Version }}-checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '(?i)^docs?:'
- '(?i)^docs\([^:]+\):'
- '(?i)^docs\[[^:]+\]:'
- '^tests?:'
- '(?i)^dev:'
- '(?i)^chore:'
- '^build\(deps\): bump .* in /docs \(#\d+\)'
- '^build\(deps\): bump .* in /\.github/peril \(#\d+\)'
- '^build\(deps\): bump .* in /scripts/gen_github_action_config \(#\d+\)'
- Merge pull request
- Merge branch
release:
skip_upload: false
github:
owner: golangci
name: golangci-lint
header: |
`golangci-lint` is a free and open-source project built by volunteers.
If you value it, consider supporting us, the [maintainers](https://donate.golangci.org) and [linter authors](https://golangci-lint.run/docs/product/thanks/).
We appreciate it! :heart:
For key updates, see the [changelog](https://golangci-lint.run/docs/product/changelog/#{{ .Major }}{{ .Minor }}{{ .Patch }}).
source:
enabled: true
name_template: '{{ .ProjectName }}-{{ .Version }}-source'
brews:
- description: Fast linters runner for Go.
homepage: https://golangci.com
skip_upload: false
repository:
owner: golangci
name: homebrew-tap
commit_author:
name: golangci-releaser
email: 65486276+golangci-releaser@users.noreply.github.com
directory: Formula
install: |
bin.install "golangci-lint"
output = Utils.popen_read("#{bin}/golangci-lint completion bash")
(bash_completion/"golangci-lint").write output
output = Utils.popen_read("#{bin}/golangci-lint completion zsh")
(zsh_completion/"_golangci-lint").write output
output = Utils.popen_read("#{bin}/golangci-lint completion fish")
(fish_completion/"golangci-lint.fish").write output
prefix.install_metafiles
test: |
system "#{bin}/golangci-lint --version"
## chocolatey is disabled because mono has been removed from GitHub Actions runners due to security and maintenance concerns.
## The release is done manually and locally, with goreleaser after the release of the other elements.
## Note(ldez): add documentation about how to do it.
#chocolateys:
# - summary: Fast linters Runner for Go
# description: |
# {{ .ProjectName }} installer package.
# Fast linters Runner for Go.
# project_url: https://golangci-lint.run
# skip_publish: false
# name: golangci-lint
# title: Golangci-lint
# owners: golangci
# authors: golangci
# copyright: 2024 GolangCI
# url_template: "https://github.com/golangci/golangci-lint/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
# icon_url: "https://cdn.rawgit.com/golangci/golangci-lint/HEAD/assets/go.png"
# license_url: https://github.com/golangci/golangci-lint/blob/HEAD/LICENSE
# require_license_acceptance: false
# project_source_url: https://github.com/golangci/golangci-lint
# package_source_url: https://github.com/golangci/golangci-lint
# docs_url: https://golangci-lint.run
# bug_tracker_url: https://github.com/golangci/golangci-lint/issues
# tags: "go golang lint linter"
# release_notes: "https://github.com/golangci/golangci-lint/releases/tag/v{{ .Version }}"
# api_key: "{{ .Env.CHOCOLATEY_API_KEY }}"
# source_repo: "https://push.chocolatey.org/"
# goamd64: v1
aurs:
- description: Fast linters runner for Go.
skip_upload: false
homepage: https://golangci.com
provides:
- "golangci-lint-bin"
maintainers:
- "Fernandez Ludovic <lfernandez dot dev at gmail dot com>"
license: GPL-3.0
private_key: "{{ .Env.AUR_KEY }}"
git_url: "ssh://aur@aur.archlinux.org/golangci-lint-bin.git"
commit_author:
name: golangci-releaser
email: 65486276+golangci-releaser@users.noreply.github.com
package: |-
local x86_64=amd64 i686=386 aarch64=arm64 armv6h=armv6 armv7h=armv7
cd "golangci-lint-${pkgver}-linux-${!CARCH}"
# bin
install -Dm755 "./golangci-lint" "${pkgdir}/usr/bin/golangci-lint"
# license
install -Dm644 "./LICENSE" "${pkgdir}/usr/share/licenses/golangci-lint/LICENSE"
# completions
mkdir -p "${pkgdir}/usr/share/bash-completion/completions/"
mkdir -p "${pkgdir}/usr/share/zsh/site-functions/"
mkdir -p "${pkgdir}/usr/share/fish/vendor_completions.d/"
./golangci-lint completion bash | install -Dm644 /dev/stdin "${pkgdir}/usr/share/bash-completion/completions/golangci-lint"
./golangci-lint completion zsh | install -Dm644 /dev/stdin "${pkgdir}/usr/share/zsh/site-functions/_golangci-lint"
./golangci-lint completion fish | install -Dm644 /dev/stdin "${pkgdir}/usr/share/fish/vendor_completions.d/golangci-lint.fish"
snapcrafts:
- summary: Fast linters runner for Go.
description: |
It runs linters in parallel, uses caching, supports YAML configuration, integrates with all major IDEs, and includes over a hundred linters.
disable: false
publish: true
name_template: "{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
grade: stable
confinement: classic
license: GPL-3.0
base: core22
nfpms:
- description: Fast linters Runner for Go
homepage: https://golangci-lint.run/
id: golangci-lint-nfpms
package_name: golangci-lint
file_name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
maintainer: "Golangci-lint Maintainers <65486276+golangci-releaser@users.noreply.github.com>"
license: GPLv3
vendor: golangci
section: golang
formats:
- deb
- rpm
umask: 0o022
overrides:
deb:
contents:
- src: LICENSE
dst: /usr/share/doc/golangci-lint/copyright
- src: README.md
dst: /usr/share/doc/golangci-lint/README.md
recommends:
- golang-go
rpm:
contents:
- src: LICENSE
dst: /usr/share/doc/golangci-lint/LICENSE
type: license
- src: README.md
dst: /usr/share/doc/golangci-lint/README.md
type: readme
recommends:
- /usr/bin/go
rpm:
group: Development/Tools
dockers_v2:
- id: golangci-lint
images:
- 'golangci/golangci-lint'
dockerfile: build/buildx.Dockerfile
platforms:
- linux/amd64
- linux/arm64
tags:
- 'latest'
- '{{ .Tag }}'
- 'v{{ .Major }}.{{ .Minor }}'
labels:
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
'org.opencontainers.image.title': '{{.ProjectName}}'
'org.opencontainers.image.description': 'Fast linters Runner for Go'
'org.opencontainers.image.source': '{{.GitURL}}'
'org.opencontainers.image.url': '{{.GitURL}}'
'org.opencontainers.image.documentation': 'https://golangci-lint.run'
'org.opencontainers.image.created': '{{.Date}}'
'org.opencontainers.image.revision': '{{.FullCommit}}'
'org.opencontainers.image.version': '{{.Version}}'
- id: golangci-lint-alpine
images:
- 'golangci/golangci-lint'
dockerfile: build/buildx-alpine.Dockerfile
platforms:
- linux/amd64
- linux/arm64
tags:
- 'latest-alpine'
- '{{ .Tag }}-alpine'
- 'v{{ .Major }}.{{ .Minor }}-alpine'
labels:
# https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys
'org.opencontainers.image.title': '{{.ProjectName}}'
'org.opencontainers.image.description': 'Fast linters Runner for Go'
'org.opencontainers.image.source': '{{.GitURL}}'
'org.opencontainers.image.url': '{{.GitURL}}'
'org.opencontainers.image.documentation': 'https://golangci-lint.run'
'org.opencontainers.image.created': '{{.Date}}'
'org.opencontainers.image.revision': '{{.FullCommit}}'
'org.opencontainers.image.version': '{{.Version}}'