forked from koordinator-sh/koordinator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
140 lines (140 loc) · 4.71 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
project_name: koordinator-sh
env:
- GIT_URL=https://github.com/koordinator-sh/koordinator
before:
hooks:
- go mod tidy
builds:
- id: koord-runtime-proxy
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
main: ./cmd/koord-runtime-proxy
binary: koord-runtime-proxy
ldflags:
- -s -w
- -X github.com/koordinator-sh/koordinator/pkg/version.version={{ .Version }}
- -X github.com/koordinator-sh/koordinator/pkg/version.buildDate={{ .Date }}
- -X github.com/koordinator-sh/koordinator/pkg/version.gitCommit={{ .Commit }}
- -X github.com/koordinator-sh/koordinator/pkg/version.gitTreeState=clean
- id: koord-manager
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
main: ./cmd/koord-manager
binary: koord-manager
ldflags:
- -s -w
- -X github.com/koordinator-sh/koordinator/pkg/version.version={{ .Version }}
- -X github.com/koordinator-sh/koordinator/pkg/version.buildDate={{ .Date }}
- -X github.com/koordinator-sh/koordinator/pkg/version.gitCommit={{ .Commit }}
- -X github.com/koordinator-sh/koordinator/pkg/version.gitTreeState=clean
- id: koord-scheduler
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
main: ./cmd/koord-scheduler
binary: koord-scheduler
ldflags:
- -s -w
- -X github.com/koordinator-sh/koordinator/pkg/version.version={{ .Version }}
- -X github.com/koordinator-sh/koordinator/pkg/version.buildDate={{ .Date }}
- -X github.com/koordinator-sh/koordinator/pkg/version.gitCommit={{ .Commit }}
- -X github.com/koordinator-sh/koordinator/pkg/version.gitTreeState=clean
- id: koordlet
env:
- CGO_ENABLED=1
goos:
- linux
goarch:
- amd64
main: ./cmd/koordlet
binary: koordlet
ldflags:
- -s -w
- -X github.com/koordinator-sh/koordinator/pkg/version.version={{ .Version }}
- -X github.com/koordinator-sh/koordinator/pkg/version.buildDate={{ .Date }}
- -X github.com/koordinator-sh/koordinator/pkg/version.gitCommit={{ .Commit }}
- -X github.com/koordinator-sh/koordinator/pkg/version.gitTreeState=clean
archives:
- id: koord-runtime-proxy
format: binary
builds:
- koord-runtime-proxy
replacements:
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^build:'
- '^ci:'
- '^docs:'
- '^test:'
- '^chore:'
- '^feat(deps):'
dockers:
- id: koord-manager
image_templates:
- "ghcr.io/{{.ProjectName}}/koord-manager:{{ .Version }}"
- "registry.cn-beijing.aliyuncs.com/{{.ProjectName}}/koord-manager:{{ .Version }}"
dockerfile: .goreleaser/koord-manager.dockerfile
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.title=koord-manager"
- "--label=org.opencontainers.image.source={{.Env.GIT_URL}}"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.licenses=Apache-2.0"
ids:
- koord-manager
goos: linux
goarch: amd64
- id: koordlet
image_templates:
- "ghcr.io/{{.ProjectName}}/koordlet:{{ .Version }}"
- "registry.cn-beijing.aliyuncs.com/{{.ProjectName}}/koordlet:{{ .Version }}"
dockerfile: .goreleaser/koordlet.dockerfile
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.title=koordlet"
- "--label=org.opencontainers.image.source={{.Env.GIT_URL}}"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.licenses=Apache-2.0"
ids:
- koordlet
goos: linux
goarch: amd64
- id: koord-scheduler
image_templates:
- "ghcr.io/{{.ProjectName}}/koord-scheduler:{{ .Version }}"
- "registry.cn-beijing.aliyuncs.com/{{.ProjectName}}/koord-scheduler:{{ .Version }}"
dockerfile: .goreleaser/koord-scheduler.dockerfile
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.title=koord-scheduler"
- "--label=org.opencontainers.image.source={{.Env.GIT_URL}}"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.licenses=Apache-2.0"
ids:
- koord-scheduler
goos: linux
goarch: amd64