-
Notifications
You must be signed in to change notification settings - Fork 7
/
.goreleaser.yml
157 lines (150 loc) · 4.44 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
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
id: "xrootd-monitoring-shoveler"
binary: xrootd-monitoring-shoveler
main: ./cmd/shoveler
ignore:
- goos: windows
goarch: arm64
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
id: "createtoken"
binary: createtoken
main: ./cmd/createtoken
ignore:
- goos: windows
goarch: arm64
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
id: "shoveler-status"
binary: shoveler-status
main: ./cmd/shoveler-status
ignore:
- goos: windows
goarch: arm64
archives:
- name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
builds:
- xrootd-monitoring-shoveler
- createtoken
- shoveler-status
wrap_in_directory: true
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- Merge pull request
- Merge branch
release:
prerelease: auto
nfpms:
- package_name: xrootd-monitoring-shoveler
builds:
- xrootd-monitoring-shoveler
- createtoken
- shoveler-status
file_name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
id: xrootd-monitoring-shoveler-nfpms
vendor: Open Science Grid
homepage: https://github.com/opensciencegrid/xrootd-monitoring-shoveler
maintainer: Derek Weitzel <[email protected]>
description: XRootD Monitoring Shoveler collects XRootD monitoring UDP packets and sends them to a message bus
license: Apache 2.0
formats:
- apk
- deb
- rpm
bindir: /usr/bin
release: 1
section: default
priority: extra
contents:
- src: config/config.yaml
dst: /etc/xrootd-monitoring-shoveler/config.yaml
type: "config|noreplace"
- src: config/xrootd-monitoring-shoveler.service
dst: /usr/lib/systemd/system/xrootd-monitoring-shoveler.service
- dst: /var/spool/xrootd-monitoring-shoveler
type: dir
file_info:
mode: 0700
owner: xrootd-monitoring-shoveler
group: xrootd-monitoring-shoveler
- dst: /var/spool/xrootd-monitoring-shoveler/queue
type: dir
file_info:
mode: 0700
owner: xrootd-monitoring-shoveler
group: xrootd-monitoring-shoveler
overrides:
rpm:
file_name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
dependencies:
- systemd
scripts:
preinstall: "scripts/rpm-preinstall.sh"
deb:
file_name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Release }}_{{ .Arch }}"
scripts:
preinstall: "scripts/deb-preinstall.sh"
dockers:
- image_templates:
- "hub.opensciencegrid.org/opensciencegrid/xrootd-monitoring-shoveler:{{ .Tag }}"
- "hub.opensciencegrid.org/opensciencegrid/xrootd-monitoring-shoveler:latest"
- "ghcr.io/opensciencegrid/xrootd-monitoring-shoveler:latest"
- "ghcr.io/opensciencegrid/xrootd-monitoring-shoveler:{{ .Tag }}"
- "opensciencegrid/xrootd-monitoring-shoveler:{{ .Tag }}"
- "opensciencegrid/xrootd-monitoring-shoveler:latest"
# GOOS of the built binaries/packages that should be used.
goos: linux
# GOARCH of the built binaries/packages that should be used.
goarch: amd64
# IDs to filter the binaries/packages.
ids:
- xrootd-monitoring-shoveler-nfpms
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.title={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"