We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3795667 commit e36e738Copy full SHA for e36e738
build/common.go
@@ -251,6 +251,13 @@ func (Build) DarwinARM64() error {
251
return buildBackend(newBuildConfig("darwin", "arm64"))
252
}
253
254
+// Custom allows customizable back-end plugin builds for the provided os and arch.
255
+// Note: Cutomized builds are not officially supported by Grafana, so this option is intended for developers who need
256
+// to create their own custom build targets.
257
+func (Build) Custom(os, arch string) error {
258
+ return buildBackend(newBuildConfig(os, arch))
259
+}
260
+
261
// GenerateManifestFile generates a manifest file for plugin submissions
262
func (Build) GenerateManifestFile() error {
263
config := Config{}
0 commit comments