This repository has been archived by the owner on Apr 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy path.goreleaser.yml
127 lines (122 loc) · 3.85 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
before:
hooks:
- go mod download
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
- GO111MODULE=on
main: ./main.go
goos:
- windows
- linux
- darwin
goarch:
- amd64
archives:
-
name_template: "{{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format: binary
-
id: homebrew
name_template: "{{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
-
name: fuzzit
github:
owner: fuzzitdev
name: homebrew-tap
url_template: "https://github.com/fuzzitdev/fuzzit/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
# Your app's homepage.
# Default is empty.
homepage: "https://fuzzit.dev"
# Your app's description.
# Default is empty.
description: "Continuous Fuzzing Made Simple."
#snapcrafts:
# -
# # You can change the name of the package.
# # Default: `{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}`
# # name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
#
# name: fuzzit
#
# # Wether to publish the snap to the snapcraft store.
# # Remember you need to `snapcraft login` first.
# # Defaults to false.
# publish: true
#
# # Single-line elevator pitch for your amazing snap.
# # 79 char long at most.
# summary: Software to integrate continuous fuzzing to c/c++/go/rust projects.
#
# description: Continuous fuzzing as a service made simple with fuzzit.
#
# # A guardrail to prevent you from releasing a snap to all your users before
# # it is ready.
# # `devel` will let you release only to the `edge` and `beta` channels in the
# # store. `stable` will let you release also to the `candidate` and `stable`
# # channels. More info about channels here:
# # https://snapcraft.io/docs/reference/channels
# grade: stable
#
# # Snaps can be setup to follow three different confinement policies:
# # `strict`, `devmode` and `classic`. A strict confinement where the snap
# # can only read and write in its own namespace is recommended. Extra
# # permissions for strict snaps can be declared as `plugs` for the app, which
# # are explained later. More info about confinement here:
# # https://snapcraft.io/docs/reference/confinement
# confinement: strict
#
# # Your app's license, based on SPDX license expressions: https://spdx.org/licenses
# # Default is empty.
# license: Apache-2.0
#
# # A snap of type base to be used as the execution environment for this snap.
# # Valid values are:
# # * bare - Empty base snap;
# # * core - Ubuntu Core 16;
# # * core18 - Ubuntu Core 18.
# # Default is empty.
# base: core18
#
# # Each binary built by GoReleaser is an app inside the snap. In this section
# # you can declare extra details for those binaries. It is optional.
# apps:
#
# # The name of the app must be the same name as the binary built or the snapcraft name.
# fuzzit:
#
# # If your app requires extra permissions to work outside of its default
# # confined space, declare them here.
# # You can read the documentation about the available plugs and the
# # things they allow:
# # https://snapcraft.io/docs/reference/interfaces.
# plugs: ["network", "docker"]
#
# # Bash completion snippet. More information about completion here:
# # https://docs.snapcraft.io/tab-completion-for-snaps.
# # completer: drumroll-completion.bash