warren/cmd_build.go

43 lines
902 B
Go
Raw Normal View History

package main
2014-12-09 07:54:35 +00:00
import (
"fmt"
"github.com/dballard/warren/src/warren"
2014-12-09 07:54:35 +00:00
"log"
2014-12-09 16:07:27 +00:00
"os"
2014-12-09 07:54:35 +00:00
"os/exec"
2014-12-10 06:43:10 +00:00
"time"
2014-12-09 07:54:35 +00:00
)
2014-12-10 06:43:10 +00:00
var buildUsage = `
warren build - Runs go build and populates the following variables:
2014-12-12 05:47:29 +00:00
BuildGitBranch from git
BuildGitHash from git
BuildDate from system time
2014-12-10 06:43:10 +00:00
`
var buildCmd = &Command{
Name: "build",
Usage: "",
Summary: "build the go server in the current directory",
2014-12-10 06:43:10 +00:00
Help: buildUsage,
Run: buildRun,
}
func buildRun(cmd *Command, args ...string) {
2014-12-10 06:43:10 +00:00
if len(args) > 0 && args[0] == "help" {
fmt.Print(cmd.Help)
return
}
date := time.Now().Format(time.RFC3339)
2014-12-12 05:47:29 +00:00
gobuild := exec.Command("go", "build", "-ldflags", fmt.Sprintf("-X main.BuildDate %s -X main.BuildGitHash %s -X main.BuildGitBranch %s", date, warren.GitHash(), warren.GitBranch()))
2014-12-10 06:43:10 +00:00
gobuild.Stderr = os.Stderr
gobuild.Stdout = os.Stdout
err := gobuild.Run()
2014-12-09 07:54:35 +00:00
if err != nil {
log.Fatal(err)
}
}