-
Notifications
You must be signed in to change notification settings - Fork 20
/
.goreleaser.yaml
200 lines (181 loc) · 5.5 KB
/
.goreleaser.yaml
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
release:
prerelease: auto
draft: false
env:
# required to support multi architecture docker builds
- DOCKER_CLI_EXPERIMENTAL=enabled
- CGO_ENABLED=0
builds:
- id: linux-build
dir: ./cmd/xeol
binary: xeol
goos:
- linux
goarch:
- amd64
- arm64
# set the modified timestamp on the output binary to the git timestamp to ensure a reproducible build
mod_timestamp: &build-timestamp '{{ .CommitTimestamp }}'
flags:
# trimpath is for reproducible builds
# remove all file system paths from the resulting executable.
# Instead of absolute file system paths, the recorded file names
# will begin with either "go" (for the standard library),
# or a module path@version (when using modules),
# or a plain import path (when using GOPATH).
- -trimpath
- -tags=netgo
ldflags: &build-ldflags |
-w
-s
-extldflags '-static'
-X main.version={{.Version}}
-X main.gitCommit={{.Commit}}
-X main.buildDate={{.Date}}
-X main.gitDescription={{.Summary}}
- id: darwin-build
dir: ./cmd/xeol
binary: xeol
goos:
- darwin
goarch:
- amd64
- arm64
flags:
# trimpath is for reproducible builds
# remove all file system paths from the resulting executable.
# Instead of absolute file system paths, the recorded file names
# will begin with either "go" (for the standard library),
# or a module path@version (when using modules),
# or a plain import path (when using GOPATH).
- -trimpath
- -tags=netgo
mod_timestamp: *build-timestamp
ldflags: *build-ldflags
- id: windows-build
dir: ./cmd/xeol
binary: xeol
goos:
- windows
goarch:
- amd64
- arm64
flags:
# trimpath is for reproducible builds
# remove all file system paths from the resulting executable.
# Instead of absolute file system paths, the recorded file names
# will begin with either "go" (for the standard library),
# or a module path@version (when using modules),
# or a plain import path (when using GOPATH).
- -trimpath
- -tags=netgo
mod_timestamp: *build-timestamp
ldflags: *build-ldflags
archives:
- id: linux-archives
builds:
- linux-build
- id: darwin-archives
builds:
- darwin-build
- id: windows-archives
format: zip
builds:
- windows-build
nfpms:
- license: "Apache 2.0"
maintainer: "noqcks"
homepage: &website "https://github.com/xeol-io/xeol"
description: &description "A scanner for end-of-life (EOL) software in container images, filesystems, and SBOMs"
formats:
- rpm
- deb
brews:
- repository:
owner: xeol-io
name: homebrew-xeol
ids:
- darwin-archives
- linux-archives
homepage: *website
description: *description
license: "Apache License 2.0"
dockers:
- image_templates:
- noqcks/xeol:debug
- noqcks/xeol:{{.Tag}}-debug
- ghcr.io/noqcks/xeol:debug
- ghcr.io/noqcks/xeol:{{.Tag}}-debug
goarch: amd64
dockerfile: Dockerfile.debug
use: buildx
build_flag_templates:
- "--platform=linux/amd64"
- "--build-arg=BUILD_DATE={{.Date}}"
- "--build-arg=BUILD_VERSION={{.Version}}"
- "--build-arg=VCS_REF={{.FullCommit}}"
- "--build-arg=VCS_URL={{.GitURL}}"
- image_templates:
- noqcks/xeol:debug-arm64v8
- noqcks/xeol:{{.Tag}}-debug-arm64v8
- ghcr.io/noqcks/xeol:debug-arm64v8
- ghcr.io/noqcks/xeol:{{.Tag}}-debug-arm64v8
goarch: arm64
dockerfile: Dockerfile.debug
use: buildx
build_flag_templates:
- "--platform=linux/arm64/v8"
- "--build-arg=BUILD_DATE={{.Date}}"
- "--build-arg=BUILD_VERSION={{.Version}}"
- "--build-arg=VCS_REF={{.FullCommit}}"
- "--build-arg=VCS_URL={{.GitURL}}"
- image_templates:
- noqcks/xeol:latest
- noqcks/xeol:{{.Tag}}
- ghcr.io/noqcks/xeol:latest
- ghcr.io/noqcks/xeol:{{.Tag}}
goarch: amd64
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--platform=linux/amd64"
- "--build-arg=BUILD_DATE={{.Date}}"
- "--build-arg=BUILD_VERSION={{.Version}}"
- "--build-arg=VCS_REF={{.FullCommit}}"
- "--build-arg=VCS_URL={{.GitURL}}"
- image_templates:
- noqcks/xeol:{{.Tag}}-arm64v8
- ghcr.io/noqcks/xeol:{{.Tag}}-arm64v8
goarch: arm64
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--platform=linux/arm64/v8"
- "--build-arg=BUILD_DATE={{.Date}}"
- "--build-arg=BUILD_VERSION={{.Version}}"
- "--build-arg=VCS_REF={{.FullCommit}}"
- "--build-arg=VCS_URL={{.GitURL}}"
docker_manifests:
- name_template: noqcks/xeol:latest
image_templates:
- noqcks/xeol:{{.Tag}}
- noqcks/xeol:{{.Tag}}-arm64v8
- name_template: noqcks/xeol:debug
- noqcks/xeol:{{.Tag}}-debug
- noqcks/xeol:{{.Tag}}-debug-arm64v8
- name_template: noqcks/xeol:{{.Tag}}
image_templates:
- noqcks/xeol:{{.Tag}}
- noqcks/xeol:{{.Tag}}-arm64v8
- name_template: ghcr.io/noqcks/xeol:latest
image_templates:
- ghcr.io/noqcks/xeol:{{.Tag}}
- ghcr.io/noqcks/xeol:{{.Tag}}-arm64v8
- name_template: ghcr.io/noqcks/xeol:debug
image_templates:
- ghcr.io/noqcks/xeol:{{.Tag}}-debug
- ghcr.io/noqcks/xeol:{{.Tag}}-debug-arm64v8
- name_template: ghcr.io/noqcks/xeol:{{.Tag}}
image_templates:
- ghcr.io/noqcks/xeol:{{.Tag}}
- ghcr.io/noqcks/xeol:{{.Tag}}-arm64v8