drone-docker-buildx/cmd/drone-docker-buildx/main.go

73 lines
1.5 KiB
Go
Raw Normal View History

2021-01-11 00:01:27 +01:00
package main
import (
"fmt"
2021-01-11 00:01:27 +01:00
"os"
"github.com/joho/godotenv"
"github.com/thegeeklab/drone-docker-buildx/plugin"
"github.com/urfave/cli/v2"
2021-01-11 00:01:27 +01:00
"github.com/drone-plugins/drone-plugin-lib/errors"
"github.com/drone-plugins/drone-plugin-lib/urfave"
2021-01-11 00:01:27 +01:00
)
var (
BuildVersion = "devel"
BuildDate = "00000000"
)
2021-01-11 00:01:27 +01:00
func main() {
settings := &plugin.Settings{}
if _, err := os.Stat("/run/drone/env"); err == nil {
_ = godotenv.Overload("/run/drone/env")
}
cli.VersionPrinter = func(c *cli.Context) {
fmt.Printf("%s version=%s date=%s\n", c.App.Name, c.App.Version, BuildDate)
2021-01-11 00:01:27 +01:00
}
app := &cli.App{
Name: "drone-docker-buildx",
Usage: "build docker container with DinD and buildx",
Version: BuildVersion,
Flags: append(settingsFlags(settings), urfave.Flags()...),
Action: run(settings),
2021-01-11 00:01:27 +01:00
}
if err := app.Run(os.Args); err != nil {
errors.HandleExit(err)
2021-01-11 00:01:27 +01:00
}
}
func run(settings *plugin.Settings) cli.ActionFunc {
return func(ctx *cli.Context) error {
urfave.LoggingFromContext(ctx)
2021-01-11 00:01:27 +01:00
plugin := plugin.New(
*settings,
urfave.PipelineFromContext(ctx),
urfave.NetworkFromContext(ctx),
)
if err := plugin.Validate(); err != nil {
if e, ok := err.(errors.ExitCoder); ok {
return e
2021-01-11 00:01:27 +01:00
}
return errors.ExitMessagef("validation failed: %w", err)
2021-01-11 00:01:27 +01:00
}
if err := plugin.Execute(); err != nil {
if e, ok := err.(errors.ExitCoder); ok {
return e
}
return errors.ExitMessagef("execution failed: %w", err)
}
return nil
}
2021-01-11 00:01:27 +01:00
}