-
Notifications
You must be signed in to change notification settings - Fork 386
Expand file tree
/
Copy path.goreleaser.nightly.yml
More file actions
122 lines (118 loc) · 3.01 KB
/
.goreleaser.nightly.yml
File metadata and controls
122 lines (118 loc) · 3.01 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
# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json
---
version: 2
builds:
- main: "./cmd/spicedb"
env:
- "CGO_ENABLED=0"
goos:
- "linux"
goarch:
- "amd64"
- "arm64"
mod_timestamp: "{{ .CommitTimestamp }}"
tags:
- "memoryprotection"
ldflags:
- "-s -w -checklinkname=0"
- "-X github.com/jzelinskie/cobrautil/v2.Version=v{{ .Version }}"
kos:
- id: "spicedb"
build: "spicedb"
repositories:
- "quay.io/authzed/spicedb-git"
- "ghcr.io/authzed/spicedb-git"
- "authzed/spicedb-git"
platforms:
- "linux/amd64"
- "linux/arm64"
tags:
- "latest"
- "v{{ .Version }}"
creation_time: "{{ .CommitTimestamp }}"
ko_data_creation_time: "{{ .CommitTimestamp }}"
bare: true
sbom: "none"
- id: "debug"
build: "spicedb"
repositories:
- "quay.io/authzed/spicedb-git"
- "ghcr.io/authzed/spicedb-git"
- "authzed/spicedb-git"
base_image: "cgr.dev/chainguard/busybox"
platforms:
- "linux/amd64"
- "linux/arm64"
tags:
- "latest-debug"
- "v{{ .Version }}-debug"
creation_time: "{{ .CommitTimestamp }}"
ko_data_creation_time: "{{ .CommitTimestamp }}"
bare: true
sbom: "none"
# ARM64
- id: "arm64"
build: "spicedb"
repositories:
- "quay.io/authzed/spicedb-git"
- "ghcr.io/authzed/spicedb-git"
- "authzed/spicedb-git"
platforms:
- "linux/arm64"
tags:
- "v{{ .Version }}-arm64"
creation_time: "{{ .CommitTimestamp }}"
ko_data_creation_time: "{{ .CommitTimestamp }}"
bare: true
sbom: "none"
- id: "arm64-debug"
build: "spicedb"
repositories:
- "quay.io/authzed/spicedb-git"
- "ghcr.io/authzed/spicedb-git"
- "authzed/spicedb-git"
base_image: "cgr.dev/chainguard/busybox"
platforms:
- "linux/arm64"
tags:
- "v{{ .Version }}-arm64-debug"
creation_time: "{{ .CommitTimestamp }}"
ko_data_creation_time: "{{ .CommitTimestamp }}"
bare: true
sbom: "none"
# AMD64
- id: "amd64"
build: "spicedb"
repositories:
- "quay.io/authzed/spicedb-git"
- "ghcr.io/authzed/spicedb-git"
- "authzed/spicedb-git"
platforms:
- "linux/amd64"
tags:
- "v{{ .Version }}-amd64"
creation_time: "{{ .CommitTimestamp }}"
ko_data_creation_time: "{{ .CommitTimestamp }}"
bare: true
sbom: "none"
- id: "amd64-debug"
build: "spicedb"
repositories:
- "quay.io/authzed/spicedb-git"
- "ghcr.io/authzed/spicedb-git"
- "authzed/spicedb-git"
base_image: "cgr.dev/chainguard/busybox"
platforms:
- "linux/amd64"
tags:
- "v{{ .Version }}-amd64-debug"
creation_time: "{{ .CommitTimestamp }}"
ko_data_creation_time: "{{ .CommitTimestamp }}"
bare: true
sbom: "none"
checksum:
name_template: "checksums.txt"
snapshot:
version_template: "{{ incpatch .Version }}-next"
nightly:
version_template: "{{ incpatch .Version }}-{{ .ShortCommit }}"