bust/pkg/cli/build_golang_bin.go
2022-10-31 20:16:26 +01:00

46 lines
911 B
Go

package cli
import (
"errors"
"os"
"git.front.kjuulh.io/kjuulh/bust/pkg/builder"
"git.front.kjuulh.io/kjuulh/bust/pkg/pipelines"
"github.com/spf13/cobra"
)
func BuildGolangBin() *cobra.Command {
cmd := &cobra.Command{
Use: "golangbin",
RunE: func(cmd *cobra.Command, args []string) error {
repoName := os.Getenv("DRONE_REPO_NAME")
if repoName == "" {
return errors.New("could not find DRONE_REPO_NAME")
}
ctx := cmd.Context()
builder, err := builder.New(ctx)
if err != nil {
return err
}
defer builder.CleanUp()
return pipelines.
New(builder).
WithGolangBin(&pipelines.GolangBinOpts{
DockerImageOpt: &pipelines.DockerImageOpt{
ImageName: repoName,
},
BuildPath: "main.go",
BinName: "main",
CGOEnabled: false,
ExecuteOnEntrypoint: false,
}).
Execute(ctx)
},
}
return cmd
}