forked from sigstore/cosign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
245 lines (225 loc) · 6.39 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
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
project_name: cosign
env:
- GO111MODULE=on
- CGO_ENABLED=1
# Prevents parallel builds from stepping on eachothers toes downloading modules
before:
hooks:
- go mod tidy
builds:
- id: linux
binary: cosign-linux-{{ .Arch }}
no_unique_dist_dir: true
main: ./cmd/cosign
goos:
- linux
goarch:
- amd64
- arm64
ldflags:
- "{{ .Env.LDFLAGS }}"
env:
- CGO_ENABLED=0
- id: linux-pivkey-amd64
binary: cosign-linux-pivkey-amd64
main: ./cmd/cosign
goos:
- linux
goarch:
- amd64
ldflags:
- "{{ .Env.LDFLAGS }}"
tags:
- pivkey
hooks:
pre:
- apt-get update
- apt-get -y install libpcsclite-dev
env:
- PKG_CONFIG_PATH="/usr/lib/x86_64-linux-gnu/pkgconfig/"
- id: darwin-amd64
binary: cosign-darwin-amd64
no_unique_dist_dir: true
env:
- CC=o64-clang
- CXX=o64-clang++
main: ./cmd/cosign
goos:
- darwin
goarch:
- amd64
ldflags:
- "{{ .Env.LDFLAGS }}"
tags:
- pivkey
- id: darwin-arm64
binary: cosign-darwin-arm64
no_unique_dist_dir: true
env:
- CC=aarch64-apple-darwin20.2-clang
- CXX=aarch64-apple-darwin20.2-clang++
main: ./cmd/cosign
goos:
- darwin
goarch:
- arm64
tags:
- pivkey
ldflags:
- "{{.Env.LDFLAGS}}"
- id: windows-amd64
binary: cosign-windows-amd64
no_unique_dist_dir: true
env:
- CC=x86_64-w64-mingw32-gcc
- CXX=x86_64-w64-mingw32-g++
main: ./cmd/cosign
goos:
- windows
goarch:
- amd64
ldflags:
- -buildmode=exe
- "{{ .Env.LDFLAGS }}"
tags:
- pivkey
- id: linux-cosigned
binary: cosigned-linux-{{ .Arch }}
no_unique_dist_dir: true
main: ./cmd/cosign/webhook
goos:
- linux
goarch:
- amd64
- arm64
ldflags:
- "{{ .Env.LDFLAGS }}"
env:
- CGO_ENABLED=0
- id: sget
binary: sget-{{ .Os }}-{{ .Arch }}
no_unique_dist_dir: true
main: ./cmd/sget
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
ignore:
- goos: windows
goarch: arm64
ldflags:
- "{{ .Env.LDFLAGS }}"
env:
- CGO_ENABLED=0
signs:
- id: cosign
signature: "${artifact}.sig"
cmd: ./dist/cosign-linux-amd64
args: ["sign-blob", "--output", "${artifact}.sig", "--key", "gcpkms://projects/{{ .Env.PROJECT_ID }}/locations/{{ .Env.KEY_LOCATION }}/keyRings/{{ .Env.KEY_RING }}/cryptoKeys/{{ .Env.KEY_NAME }}/versions/{{ .Env.KEY_VERSION }}", "${artifact}"]
artifacts: binary
- id: cosigned
signature: "${artifact}.sig"
cmd: ./dist/cosign-linux-amd64
args: ["sign-blob", "--output", "${artifact}.sig", "--key", "gcpkms://projects/{{ .Env.PROJECT_ID }}/locations/{{ .Env.KEY_LOCATION }}/keyRings/{{ .Env.KEY_RING }}/cryptoKeys/{{ .Env.KEY_NAME }}/versions/{{ .Env.KEY_VERSION }}", "${artifact}"]
artifacts: binary
ids:
- linux-cosigned
- id: sget
signature: "${artifact}.sig"
cmd: ./dist/cosign-linux-amd64
args: ["sign-blob", "--output", "${artifact}.sig", "--key", "gcpkms://projects/{{ .Env.PROJECT_ID }}/locations/{{ .Env.KEY_LOCATION }}/keyRings/{{ .Env.KEY_RING }}/cryptoKeys/{{ .Env.KEY_NAME }}/versions/{{ .Env.KEY_VERSION }}", "${artifact}"]
artifacts: binary
ids:
- sget
dockers:
# cosign Image
- image_templates:
- "ghcr.io/{{ .Env.PROJECT_ID }}/cosign:{{ .Version }}-amd64"
use: buildx
dockerfile: Dockerfile
build_flag_templates:
- "--platform=linux/amd64"
- "--build-arg=RUNTIME_IMAGE={{ .Env.RUNTIME_IMAGE }}"
- "--build-arg=ARCH=amd64"
- image_templates:
- "ghcr.io/{{ .Env.PROJECT_ID }}/cosign:{{ .Version }}-arm64v8"
use: buildx
goarch: arm64
dockerfile: Dockerfile
build_flag_templates:
- "--platform=linux/arm64/v8"
- "--build-arg=RUNTIME_IMAGE={{ .Env.RUNTIME_IMAGE }}"
- "--build-arg=ARCH=arm64"
# cosigned Image
- image_templates:
- "ghcr.io/{{ .Env.PROJECT_ID }}/cosigned:{{ .Version }}-amd64"
use: buildx
dockerfile: Dockerfile.cosigned
build_flag_templates:
- "--platform=linux/amd64"
- "--build-arg=RUNTIME_IMAGE={{ .Env.RUNTIME_IMAGE }}"
- "--build-arg=ARCH=amd64"
- image_templates:
- "ghcr.io/{{ .Env.PROJECT_ID }}/cosigned:{{ .Version }}-arm64v8"
use: buildx
goarch: arm64
dockerfile: Dockerfile.cosigned
build_flag_templates:
- "--platform=linux/arm64/v8"
- "--build-arg=RUNTIME_IMAGE={{ .Env.RUNTIME_IMAGE }}"
- "--build-arg=ARCH=arm64"
# sget Image
- image_templates:
- "ghcr.io/{{ .Env.PROJECT_ID }}/sget:{{ .Version }}-amd64"
use: buildx
dockerfile: Dockerfile.sget
build_flag_templates:
- "--platform=linux/amd64"
- "--build-arg=RUNTIME_IMAGE={{ .Env.RUNTIME_IMAGE }}"
- "--build-arg=ARCH=amd64"
- image_templates:
- "ghcr.io/{{ .Env.PROJECT_ID }}/sget:{{ .Version }}-arm64v8"
use: buildx
goarch: arm64
dockerfile: Dockerfile.sget
build_flag_templates:
- "--platform=linux/arm64/v8"
- "--build-arg=RUNTIME_IMAGE={{ .Env.RUNTIME_IMAGE }}"
- "--build-arg=ARCH=arm64"
docker_manifests:
- name_template: ghcr.io/{{ .Env.PROJECT_ID }}/cosign:{{ .Version }}
image_templates:
- ghcr.io/{{ .Env.PROJECT_ID }}/cosign:{{ .Version }}-amd64
- ghcr.io/{{ .Env.PROJECT_ID }}/cosign:{{ .Version }}-arm64v8
- name_template: ghcr.io/{{ .Env.PROJECT_ID }}/cosigned:{{ .Version }}
image_templates:
- ghcr.io/{{ .Env.PROJECT_ID }}/cosigned:{{ .Version }}-amd64
- ghcr.io/{{ .Env.PROJECT_ID }}/cosigned:{{ .Version }}-arm64v8
- name_template: ghcr.io/{{ .Env.PROJECT_ID }}/sget:{{ .Version }}
image_templates:
- ghcr.io/{{ .Env.PROJECT_ID }}/sget:{{ .Version }}-amd64
- ghcr.io/{{ .Env.PROJECT_ID }}/sget:{{ .Version }}-arm64v8
docker_signs:
- artifacts: all
args: [ "sign", "--key", "gcpkms://projects/{{ .Env.PROJECT_ID }}/locations/{{ .Env.KEY_LOCATION }}/keyRings/{{ .Env.KEY_RING }}/cryptoKeys/{{ .Env.KEY_NAME }}/versions/{{ .Env.KEY_VERSION }}", "${artifact}" ]
archives:
- format: binary
name_template: "{{ .Binary }}"
allow_different_binary_count: true
checksum:
name_template: "{{ .ProjectName }}_checksums.txt"
snapshot:
name_template: SNAPSHOT-{{ .ShortCommit }}
release:
prerelease: allow # remove this when we start publishing non-prerelease or set to auto
draft: true # allow for manual edits
github:
owner: sigstore
name: cosign
footer: |
### Thanks for all contributors!
extra_files:
- glob: "./release/release-cosign.pub"