-
Notifications
You must be signed in to change notification settings - Fork 23
/
.goreleaser.yml
186 lines (171 loc) · 3.38 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
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
project_name: zeitgeist
version: 2
env:
- GO111MODULE=on
- CGO_ENABLED=0
- COSIGN_YES=true
before:
hooks:
- go mod tidy
- /bin/bash -c 'if [ -n "$(git --no-pager diff --exit-code go.mod go.sum)" ]; then exit 1; fi'
# disabling for now, looks like we cannot build two different binaries, it build only the root one.
# gomod:
# proxy: true
builds:
- id: zeitgeist-remote
dir: ./remote/zeitgeist
no_unique_dist_dir: true
binary: zeitgeist-remote-{{ .Arch }}-{{ .Os }}
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64
- arm
- s390x
- ppc64le
goarm:
- '7'
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: arm
- goos: windows
goarch: s390x
- goos: windows
goarch: ppc64le
flags:
- -trimpath
ldflags:
- "{{ .Env.LDFLAGS }}"
- id: zeitgeist-local
dir: .
no_unique_dist_dir: true
binary: zeitgeist-{{ .Arch }}-{{ .Os }}
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64
- arm
- s390x
- ppc64le
goarm:
- '7'
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: arm
- goos: windows
goarch: s390x
- goos: windows
goarch: ppc64le
flags:
- -trimpath
ldflags:
- "{{ .Env.LDFLAGS }}"
- id: buoy
dir: ./buoy
no_unique_dist_dir: true
binary: buoy-{{ .Arch }}-{{ .Os }}
main: .
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64
- arm
- s390x
- ppc64le
goarm:
- '7'
ignore:
- goos: windows
goarch: arm64
- goos: windows
goarch: arm
- goos: windows
goarch: s390x
- goos: windows
goarch: ppc64le
flags:
- -trimpath
ldflags:
- "{{ .Env.LDFLAGS }}"
archives:
- format: binary
name_template: "{{ .Binary }}"
allow_different_binary_count: true
signs:
# Keyless
- id: zeitgeist-keyless
signature: "${artifact}.sig"
certificate: "${artifact}.pem"
cmd: cosign
args: ["sign-blob", "--output-signature", "${artifact}.sig", "--output-certificate", "${artifact}.pem", "${artifact}"]
artifacts: all
sboms:
- id: zeitgeist-remote
cmd: bom
args:
- generate
- "--output"
- "zeitgeist-remote-bom.json.spdx"
- "-d"
- "../"
- "-c"
- "../.zeitgeist-remote-bom-config.yaml"
- "--format"
- "json"
artifacts: any
documents:
- "zeitgeist-remote-bom.json.spdx"
- id: zeitgeist-full
cmd: bom
args:
- generate
- "--output"
- "zeitgeist-bom.json.spdx"
- "-d"
- "../"
- "-c"
- "../.zeitgeist-bom-config.yaml"
- "--format"
- "json"
artifacts: any
documents:
- "zeitgeist-bom.json.spdx"
- id: buoy
cmd: bom
args:
- generate
- "--output"
- "buoy-bom.json.spdx"
- "-d"
- "../"
- "-c"
- "../.buoy-bom-config.yaml"
- "--format"
- "json"
artifacts: any
documents:
- "buoy-bom.json.spdx"
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: "{{ .Tag }}-next"
release:
github:
owner: kubernetes-sigs
name: zeitgeist
prerelease: auto
changelog:
disable: true