Skip to content
Snippets Groups Projects
build.go 1.45 KiB
Newer Older
steeve.chailloux's avatar
steeve.chailloux committed
package cmd

Florent Aide's avatar
Florent Aide committed
	"orus.io/orus-io/beaver/runner"
Florent Aide's avatar
Florent Aide committed

steeve.chailloux's avatar
steeve.chailloux committed
type BuildCmd struct {
	Args struct {
steeve.chailloux's avatar
steeve.chailloux committed
		DryRun bool   `short:"d" long:"dry-run" description:"if set only prints commands but do not run them"`
		Keep   bool   `short:"k" long:"keep" descriptions:"Keep the temporary files"`
		Output string `short:"o" long:"output" descriptions:"output directory"`
	}
	PositionnalArgs struct {
Florent Aide's avatar
Florent Aide committed
		DirName string `required:"yes" positional-arg-name:"directory"`
steeve.chailloux's avatar
steeve.chailloux committed
	} `positional-args:"yes"`
}

// NewBuildCmd ...
func NewBuildCmd() *BuildCmd {
	cmd := BuildCmd{}
	return &cmd
}

// Execute ...
func (cmd *BuildCmd) Execute([]string) error {
Florent Aide's avatar
Florent Aide committed
	Logger.Info().Str("directory", cmd.PositionnalArgs.DirName).Msg("starting beaver")
steeve.chailloux's avatar
steeve.chailloux committed
	config := runner.NewCmdConfig(Logger, ".", cmd.PositionnalArgs.DirName, cmd.Args.DryRun, cmd.Args.Output)
	tmpDir, err := os.MkdirTemp(os.TempDir(), "beaver-")
	if err != nil {
		return fmt.Errorf("failed to create temp dir: %w", err)
	}
steeve.chailloux's avatar
steeve.chailloux committed
	if !cmd.Args.Keep {
		defer func() {
			if err := os.RemoveAll(tmpDir); err != nil {
				Logger.Err(err).Str("tempdir", tmpDir).Msg("failed to remove temp dir")
			}
		}()

	if err := config.Initialize(tmpDir); err != nil {
		return fmt.Errorf("failed to prepare config: %w", err)
Florent Aide's avatar
Florent Aide committed
	}
	r := runner.NewRunner(config)
	return r.Build(tmpDir)
steeve.chailloux's avatar
steeve.chailloux committed
}

func init() {
	buildCmd := NewBuildCmd()
	_, err := parser.AddCommand("build", "Build new environment", "", buildCmd)
	if err != nil {
		Logger.Fatal().Msg(err.Error())
	}
}