@@ -59,77 +59,77 @@ brews:
59
59
# Default is empty.
60
60
description : " Continuous Fuzzing Made Simple."
61
61
62
- snapcrafts :
63
- -
64
- # You can change the name of the package.
65
- # Default: `{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}`
66
- # name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
67
-
68
- name : fuzzit
69
-
70
- # Wether to publish the snap to the snapcraft store.
71
- # Remember you need to `snapcraft login` first.
72
- # Defaults to false.
73
- publish : true
74
-
75
- # Single-line elevator pitch for your amazing snap.
76
- # 79 char long at most.
77
- summary : Software to integrate continuous fuzzing to c/c++/go/rust projects.
78
-
79
- description : Continuous fuzzing as a service made simple with fuzzit.
80
-
81
- # A guardrail to prevent you from releasing a snap to all your users before
82
- # it is ready.
83
- # `devel` will let you release only to the `edge` and `beta` channels in the
84
- # store. `stable` will let you release also to the `candidate` and `stable`
85
- # channels. More info about channels here:
86
- # https://snapcraft.io/docs/reference/channels
87
- grade : stable
88
-
89
- # Snaps can be setup to follow three different confinement policies:
90
- # `strict`, `devmode` and `classic`. A strict confinement where the snap
91
- # can only read and write in its own namespace is recommended. Extra
92
- # permissions for strict snaps can be declared as `plugs` for the app, which
93
- # are explained later. More info about confinement here:
94
- # https://snapcraft.io/docs/reference/confinement
95
- confinement : strict
96
-
97
- # Your app's license, based on SPDX license expressions: https://spdx.org/licenses
98
- # Default is empty.
99
- license : Apache-2.0
100
-
101
- # A snap of type base to be used as the execution environment for this snap.
102
- # Valid values are:
103
- # * bare - Empty base snap;
104
- # * core - Ubuntu Core 16;
105
- # * core18 - Ubuntu Core 18.
106
- # Default is empty.
107
- base : core18
108
-
109
- # Each binary built by GoReleaser is an app inside the snap. In this section
110
- # you can declare extra details for those binaries. It is optional.
111
- apps :
112
-
113
- # The name of the app must be the same name as the binary built or the snapcraft name.
114
- fuzzit :
115
-
116
- # If your app requires extra permissions to work outside of its default
117
- # confined space, declare them here.
118
- # You can read the documentation about the available plugs and the
119
- # things they allow:
120
- # https://snapcraft.io/docs/reference/interfaces.
121
- plugs : ["network", "personal-files"]
122
-
123
- # Bash completion snippet. More information about completion here:
124
- # https://docs.snapcraft.io/tab-completion-for-snaps.
125
- # completer: drumroll-completion.bash
126
-
127
- # Allows plugs to be configured. Plugs like system-files and personal-files
128
- # require this.
129
- # Default is empty.
130
- plugs :
131
- personal-files :
132
- read :
133
- - $HOME/.fuzzit.cache
134
- write :
135
- - $HOME/.fuzzit.cache
62
+ # snapcrafts:
63
+ # -
64
+ # # You can change the name of the package.
65
+ # # Default: `{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}`
66
+ # # name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
67
+ #
68
+ # name: fuzzit
69
+ #
70
+ # # Wether to publish the snap to the snapcraft store.
71
+ # # Remember you need to `snapcraft login` first.
72
+ # # Defaults to false.
73
+ # publish: true
74
+ #
75
+ # # Single-line elevator pitch for your amazing snap.
76
+ # # 79 char long at most.
77
+ # summary: Software to integrate continuous fuzzing to c/c++/go/rust projects.
78
+ #
79
+ # description: Continuous fuzzing as a service made simple with fuzzit.
80
+ #
81
+ # # A guardrail to prevent you from releasing a snap to all your users before
82
+ # # it is ready.
83
+ # # `devel` will let you release only to the `edge` and `beta` channels in the
84
+ # # store. `stable` will let you release also to the `candidate` and `stable`
85
+ # # channels. More info about channels here:
86
+ # # https://snapcraft.io/docs/reference/channels
87
+ # grade: stable
88
+ #
89
+ # # Snaps can be setup to follow three different confinement policies:
90
+ # # `strict`, `devmode` and `classic`. A strict confinement where the snap
91
+ # # can only read and write in its own namespace is recommended. Extra
92
+ # # permissions for strict snaps can be declared as `plugs` for the app, which
93
+ # # are explained later. More info about confinement here:
94
+ # # https://snapcraft.io/docs/reference/confinement
95
+ # confinement: strict
96
+ #
97
+ # # Your app's license, based on SPDX license expressions: https://spdx.org/licenses
98
+ # # Default is empty.
99
+ # license: Apache-2.0
100
+ #
101
+ # # A snap of type base to be used as the execution environment for this snap.
102
+ # # Valid values are:
103
+ # # * bare - Empty base snap;
104
+ # # * core - Ubuntu Core 16;
105
+ # # * core18 - Ubuntu Core 18.
106
+ # # Default is empty.
107
+ # base: core18
108
+ #
109
+ # # Each binary built by GoReleaser is an app inside the snap. In this section
110
+ # # you can declare extra details for those binaries. It is optional.
111
+ # apps:
112
+ #
113
+ # # The name of the app must be the same name as the binary built or the snapcraft name.
114
+ # fuzzit:
115
+ #
116
+ # # If your app requires extra permissions to work outside of its default
117
+ # # confined space, declare them here.
118
+ # # You can read the documentation about the available plugs and the
119
+ # # things they allow:
120
+ # # https://snapcraft.io/docs/reference/interfaces.
121
+ # plugs: ["network", "personal-files"]
122
+ #
123
+ # # Bash completion snippet. More information about completion here:
124
+ # # https://docs.snapcraft.io/tab-completion-for-snaps.
125
+ # # completer: drumroll-completion.bash
126
+ #
127
+ # # Allows plugs to be configured. Plugs like system-files and personal-files
128
+ # # require this.
129
+ # # Default is empty.
130
+ # plugs:
131
+ # personal-files:
132
+ # read:
133
+ # - $HOME/.fuzzit.cache
134
+ # write:
135
+ # - $HOME/.fuzzit.cache
0 commit comments