-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
98 lines (91 loc) · 2.56 KB
/
.goreleaser.yaml
File metadata and controls
98 lines (91 loc) · 2.56 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
before:
hooks:
- go mod tidy
env:
- CGO_ENABLED=1
builds:
- id: ipdex-darwin-amd64
binary: ipdex
main: ./cmd/ipdex
goarch:
- amd64
goos:
- darwin
env:
- CC=o64-clang
- CXX=o64-clang++
flags:
- -trimpath
ldflags:
- -X crowdsecurity/ipdex/pkg/version.Version={{ .Version }} -X crowdsecurity/ipdex/pkg/version.Version.Commit={{ .Commit }} -X crowdsecurity/ipdex/pkg/version.Version.BuildDate={{ .Date }}
- id: ipdex-darwin-arm64
binary: ipdex
main: ./cmd/ipdex
goarch:
- arm64
goos:
- darwin
env:
- CC=oa64-clang
- CXX=oa64-clang++
flags:
- -trimpath
ldflags:
- -X crowdsecurity/ipdex/pkg/version.Version={{ .Version }} -X crowdsecurity/ipdex/pkg/version.Version.Commit={{ .Commit }} -X crowdsecurity/ipdex/pkg/version.Version.BuildDate={{ .Date }}
- id: ipdex-linux-amd64
binary: ipdex
main: ./cmd/ipdex
env:
- CC=x86_64-linux-gnu-gcc
- CXX=x86_64-linux-gnu-g++
goarch:
- amd64
goos:
- linux
flags:
- -trimpath
ldflags:
- -extldflags "-lc -lrt -lpthread" -X crowdsecurity/ipdex/pkg/version.Version={{ .Version }} -X crowdsecurity/ipdex/pkg/version.Version.Commit={{ .Commit }} -X crowdsecurity/ipdex/pkg/version.Version.BuildDate={{ .Date }}
- id: ipdex-linux-arm64
binary: ipdex
main: ./cmd/ipdex
goarch:
- arm64
goos:
- linux
env:
- CC=aarch64-linux-gnu-gcc
- CXX=aarch64-linux-gnu-g++
flags:
- -trimpath
ldflags:
- -extldflags "-lc -lrt -lpthread" -X crowdsecurity/ipdex/pkg/version.Version={{ .Version }} -X crowdsecurity/ipdex/pkg/version.Version.Commit={{ .Commit }} -X crowdsecurity/ipdex/pkg/version.Version.BuildDate={{ .Date }}
- id: ipdex-windows-amd64
binary: ipdex
main: ./cmd/ipdex
goarch:
- amd64
goos:
- windows
env:
- CC=x86_64-w64-mingw32-gcc
- CXX=x86_64-w64-mingw32-g++
flags:
- -trimpath
- -buildmode=exe
ldflags:
- -X crowdsecurity/ipdex/pkg/version.Version={{ .Version }} -X crowdsecurity/ipdex/pkg/version.Version.Commit={{ .Commit }} -X crowdsecurity/ipdex/pkg/version.Version.BuildDate={{ .Date }}
archives:
- id: build binaries
builds:
- ipdex-darwin-amd64
- ipdex-darwin-arm64
- ipdex-linux-amd64
- ipdex-linux-arm64
- ipdex-windows-amd64
name_template: "ipdex_{{ .Os }}_{{ .Arch }}"
format: binary
release:
footer: >-
---
Released by [GoReleaser](https://github.com/goreleaser/goreleaser).