Skip to content

Commit 22143e5

Browse files
committed
Update Magefile to only build 4 platform,not LinuxARM. Close #10
1 parent 6ff6171 commit 22143e5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Magefile.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@ package main
66
import (
77
// mage:import
88
build "github.com/grafana/grafana-plugin-sdk-go/build"
9+
"github.com/magefile/mage/mg"
910
)
1011

12+
func Build4() { //revive:disable-line
13+
b := build.Build{}
14+
mg.Deps(b.Windows, b.Darwin, b.DarwinARM64, b.LinuxARM64, b.GenerateManifestFile)
15+
}
16+
1117
// Default configures the default target.
12-
var Default = build.BuildAll
18+
var Default = Build4

0 commit comments

Comments
 (0)