forked from cloudradar/frontman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
128 lines (120 loc) · 2.8 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
env:
- CGO_ENABLED=0
- PROJECT=github.com/cloudradar-monitoring/frontman
builds:
- main: ./cmd/frontman
binary: frontman
goos:
- windows
- darwin
- linux
goarch:
- 386
- amd64
- arm
- arm64
- mipsle
goarm:
- 5
- 6
- 7
gomips:
- hardfloat
- softfloat
# List of combinations of GOOS + GOARCH + GOARM to ignore.
ignore:
- goos: darwin
goarch: 386
- goos: windows
goarch: 386
- goos: windows
goarch: arm
- goos: darwin
goarch: arm
- goos: windows
goarch: arm64
- goos: darwin
goarch: arm64
- goos: darwin
goarch: mipsle
- goos: windows
goarch: mipsle
ldflags:
- "-s -w -X {{.Env.PROJECT}}.Version={{.Version}} -X \"{{.Env.PROJECT}}.SelfUpdatesFeedURL={{.Env.SELF_UPDATES_FEED_URL}}\""
archives:
-
files:
- README.md
- example.json
- example.config.toml
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
nfpms:
-
file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
vendor: cloudradar GmbH
maintainer: CloudRadar GmbH <frontman@cloudradar.io>
homepage: https://cloudradar.io
description: Monitoring proxy for agentless monitoring of subnets
license: MIT
# Formats to be generated.
formats:
- deb
- rpm
recommends:
- ca-certificates
- procps
# Override default /usr/local/bin destination for binaries
bindir: /usr/bin
# Empty folders that should be created and managed by the packager
# implementation.
empty_folders:
- /var/log/frontman
- /etc/frontman
- /usr/share/frontman
# Put example.json
files:
"example.json": "/usr/share/doc/frontman/example.json"
"example.config.toml": "/etc/frontman/example.config.toml"
"cacert.pem": "/etc/frontman/cacert.pem"
"pkg-scripts/frontman.tt": "/etc/frontman/frontman.tt"
"pkg-scripts/se_linux_policy_install.sh": "/etc/frontman/se_linux_policy_install.sh"
scripts:
preinstall: "pkg-scripts/preinstall.sh"
postinstall: "pkg-scripts/postinstall.sh"
preremove: "pkg-scripts/preremove.sh"
overrides:
rpm:
recommends:
- ca-certificates
- procps-ng
dependencies:
- libcap
scripts:
postinstall: "pkg-scripts/postinstall-rpm.sh"
preremove: "pkg-scripts/preremove-rpm.sh"
deb:
dependencies:
- libcap2-bin
release:
github:
owner: cloudradar-monitoring
name: frontman
draft: true