diff --git a/magefile.go b/magefile.go index cc49c3eb4..d166f053c 100644 --- a/magefile.go +++ b/magefile.go @@ -92,6 +92,34 @@ func init() { Ldflags = `-X "` + PACKAGE + `/pkg/version.VersionNumber=` + VersionNumber + `" -X "main.Tags=` + Tags + `"` } +func Clean() { + +} + +func Test() { + +} + +func TestCoverage() { + +} + +func IntegrationTest() { + +} + +func Lint() { + +} + +func Fmt() { + +} + +func FmtCheck() { + +} + // Generates static content into the final binary func Generate() error { return exec.Command("go", "generate", PACKAGE+"/pkg/static").Run() @@ -106,3 +134,83 @@ func Build() error { fmt.Print(string(out)) return err } + +func CompressBuild() { + +} + +func Release() { + +} + +func ReleaseDirs() { + +} + +func ReleaseWindows() { + +} + +func ReleaseLinux() { + +} + +func ReleaseDarwin() { + +} + +func ReleaseCompress() { + +} + +func ReleaseCopy() { + +} + +func ReleaseOsPackage() { + +} + +func ReleaseZip() { + +} + +func BuildDeb() { + +} + +func Reprepro() { + +} + +func GotSwag() { + +} + +func DoTheSwag() { + +} + +func MisspellCheck() { + +} + +func IneffassignCheck() { + +} + +func GocycloCheck() { + +} + +func StaticCheck() { + +} + +func GoSecCheck() { + +} + +func GoconstCheck() { + +}