-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.goreleaser.yaml
204 lines (204 loc) · 3.73 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
201
202
203
204
builds:
- id: "cluster-metrics"
dir: clustermetrics
main: ./cmd/cluster-metrics
binary: bin/cluster-metrics
ldflags:
- "{{ .Env.LDFLAGS }}"
goos:
- linux
goarch:
- amd64
- arm64
ignore:
- goos: darwin
goarch: ppc64le
env:
- CGO_ENABLED=0
- id: "kueue-ks"
dir: kueue-ks
main: ./cmd/kueue-ks
binary: bin/kueue-ks
ldflags:
- "{{ .Env.LDFLAGS }}"
goos:
- linux
goarch:
- amd64
- arm64
ignore:
- goos: darwin
goarch: ppc64le
env:
- CGO_ENABLED=0
- id: "mc-scheduling"
dir: mc-scheduling
main: ./cmd/mc-scheduler
binary: bin/mc-scheduler
ldflags:
- "{{ .Env.LDFLAGS }}"
goos:
- linux
goarch:
- amd64
- arm64
ignore:
- goos: darwin
goarch: ppc64le
env:
- CGO_ENABLED=0
- id: "shadow-pods"
dir: shadow-pods
main: ./cmd/shadow-pods
binary: bin/shadow-pods
ldflags:
- "{{ .Env.LDFLAGS }}"
goos:
- linux
goarch:
- amd64
- arm64
ignore:
- goos: darwin
goarch: ppc64le
env:
- CGO_ENABLED=0
- id: "loki-logger"
dir: shadow-pods
main: ./cmd/loki-logger
binary: bin/loki-logger
ldflags:
- "{{ .Env.LDFLAGS }}"
goos:
- linux
goarch:
- amd64
- arm64
ignore:
- goos: darwin
goarch: ppc64le
env:
- CGO_ENABLED=0
- id: "suspend-webhook"
dir: suspend-webhook
main: ./cmd/suspend-webhook
binary: bin/suspend-webhook
ldflags:
- "{{ .Env.LDFLAGS }}"
goos:
- linux
goarch:
- amd64
- arm64
ignore:
- goos: darwin
goarch: ppc64le
env:
- CGO_ENABLED=0
kos:
- repository: ghcr.io/kubestellar/galaxy/cluster-metrics
working_dir: clustermetrics
main: ./cmd/cluster-metrics
id: cluster-metrics
build: cluster-metrics
tags:
- '{{.Version}}'
- latest
bare: true
preserve_import_paths: false
ldflags:
- "{{ .Env.LDFLAGS }}"
platforms:
- linux/amd64
- linux/arm64
env:
- CGO_ENABLED=0
- repository: ghcr.io/kubestellar/galaxy/kueue-ks
working_dir: kueue-ks
main: ./cmd/kueue-ks
id: kueue-ks
build: kueue-ks
tags:
- '{{.Version}}'
- latest
bare: true
preserve_import_paths: false
ldflags:
- "{{ .Env.LDFLAGS }}"
platforms:
- linux/amd64
- linux/arm64
env:
- CGO_ENABLED=0
- repository: ghcr.io/kubestellar/galaxy/mc-scheduler
working_dir: mc-scheduling
main: ./cmd/mc-scheduler
id: mc-scheduling
build: mc-scheduling
tags:
- '{{.Version}}'
- latest
bare: true
preserve_import_paths: false
ldflags:
- "{{ .Env.LDFLAGS }}"
platforms:
- linux/amd64
- linux/arm64
env:
- CGO_ENABLED=0
- repository: ghcr.io/kubestellar/galaxy/shadow-pods
working_dir: shadow-pods
main: ./cmd/shadow-pods
id: shadow-pods
build: shadow-pods
tags:
- '{{.Version}}'
- latest
bare: true
preserve_import_paths: false
ldflags:
- "{{ .Env.LDFLAGS }}"
platforms:
- linux/amd64
- linux/arm64
env:
- CGO_ENABLED=0
- repository: ghcr.io/kubestellar/galaxy/loki-logger
working_dir: shadow-pods
main: ./cmd/loki-logger
id: loki-logger
build: loki-logger
tags:
- '{{.Version}}'
- latest
bare: true
preserve_import_paths: false
ldflags:
- "{{ .Env.LDFLAGS }}"
platforms:
- linux/amd64
- linux/arm64
env:
- CGO_ENABLED=0
- repository: ghcr.io/kubestellar/galaxy/suspend-webhook
working_dir: suspend-webhook
main: ./cmd/suspend-webhook
id: suspend-webhook
build: suspend-webhook
tags:
- '{{.Version}}'
- latest
bare: true
preserve_import_paths: false
ldflags:
- "{{ .Env.LDFLAGS }}"
platforms:
- linux/amd64
- linux/arm64
env:
- CGO_ENABLED=0
release:
draft: false
prerelease: auto
mode: keep-existing