2015-06-24 15:59:31 +00:00
|
|
|
// +build ignore
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path"
|
|
|
|
"path/filepath"
|
2015-08-14 13:08:07 +00:00
|
|
|
"runtime"
|
2018-01-12 21:06:42 +00:00
|
|
|
"strconv"
|
2015-06-24 15:59:31 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
verbose bool
|
|
|
|
keepGopath bool
|
2015-08-19 18:11:48 +00:00
|
|
|
runTests bool
|
2017-05-25 09:03:29 +00:00
|
|
|
enableCGO bool
|
2015-06-24 15:59:31 +00:00
|
|
|
)
|
|
|
|
|
2016-12-03 10:14:30 +00:00
|
|
|
var config = struct {
|
2018-01-12 21:06:42 +00:00
|
|
|
Name string
|
|
|
|
Namespace string
|
|
|
|
Main string
|
|
|
|
Tests []string
|
|
|
|
MinVersion GoVersion
|
2016-12-03 10:14:30 +00:00
|
|
|
}{
|
2017-07-21 19:51:01 +00:00
|
|
|
Name: "restic", // name of the program executable and directory
|
|
|
|
Namespace: "github.com/restic/restic", // subdir of GOPATH, e.g. "github.com/foo/bar"
|
|
|
|
Main: "github.com/restic/restic/cmd/restic", // package name for the main package
|
2017-07-21 20:06:50 +00:00
|
|
|
Tests: []string{ // tests to run
|
|
|
|
"github.com/restic/restic/internal/...",
|
|
|
|
"github.com/restic/restic/cmd/..."},
|
2018-01-12 21:06:42 +00:00
|
|
|
MinVersion: GoVersion{Major: 1, Minor: 8, Patch: 0}, // minimum Go version supported
|
2016-12-03 10:14:30 +00:00
|
|
|
}
|
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
// specialDir returns true if the file begins with a special character ('.' or '_').
|
|
|
|
func specialDir(name string) bool {
|
|
|
|
if name == "." {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
base := filepath.Base(name)
|
2016-02-14 16:39:51 +00:00
|
|
|
if base == "vendor" || base[0] == '_' || base[0] == '.' {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
2015-08-19 18:11:48 +00:00
|
|
|
// excludePath returns true if the file should not be copied to the new GOPATH.
|
|
|
|
func excludePath(name string) bool {
|
|
|
|
ext := path.Ext(name)
|
2017-04-19 15:31:07 +00:00
|
|
|
if ext == ".go" || ext == ".s" || ext == ".h" {
|
2015-08-19 18:11:48 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
parentDir := filepath.Base(filepath.Dir(name))
|
|
|
|
if parentDir == "testdata" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
// updateGopath builds a valid GOPATH at dst, with all Go files in src/ copied
|
|
|
|
// to dst/prefix/, so calling
|
|
|
|
//
|
|
|
|
// updateGopath("/tmp/gopath", "/home/u/restic", "github.com/restic/restic")
|
|
|
|
//
|
|
|
|
// with "/home/u/restic" containing the file "foo.go" yields the following tree
|
|
|
|
// at "/tmp/gopath":
|
|
|
|
//
|
|
|
|
// /tmp/gopath
|
|
|
|
// └── src
|
|
|
|
// └── github.com
|
|
|
|
// └── restic
|
|
|
|
// └── restic
|
|
|
|
// └── foo.go
|
|
|
|
func updateGopath(dst, src, prefix string) error {
|
2017-07-21 19:51:01 +00:00
|
|
|
verbosePrintf("copy contents of %v to %v\n", src, filepath.Join(dst, prefix))
|
2015-06-24 15:59:31 +00:00
|
|
|
return filepath.Walk(src, func(name string, fi os.FileInfo, err error) error {
|
2017-07-21 19:51:01 +00:00
|
|
|
if name == src {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
if specialDir(name) {
|
|
|
|
if fi.IsDir() {
|
|
|
|
return filepath.SkipDir
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-07-21 19:51:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
if fi.IsDir() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-08-19 18:11:48 +00:00
|
|
|
if excludePath(name) {
|
2015-06-24 15:59:31 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
intermediatePath, err := filepath.Rel(src, name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fileSrc := filepath.Join(src, intermediatePath)
|
|
|
|
fileDst := filepath.Join(dst, "src", prefix, intermediatePath)
|
|
|
|
|
|
|
|
return copyFile(fileDst, fileSrc)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-12-03 10:14:30 +00:00
|
|
|
func directoryExists(dirname string) bool {
|
|
|
|
stat, err := os.Stat(dirname)
|
|
|
|
if err != nil && os.IsNotExist(err) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return stat.IsDir()
|
|
|
|
}
|
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
// copyFile creates dst from src, preserving file attributes and timestamps.
|
|
|
|
func copyFile(dst, src string) error {
|
|
|
|
fi, err := os.Stat(src)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fsrc, err := os.Open(src)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = os.MkdirAll(filepath.Dir(dst), 0755); err != nil {
|
|
|
|
fmt.Printf("MkdirAll(%v)\n", filepath.Dir(dst))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
fdst, err := os.Create(dst)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-01-12 21:06:42 +00:00
|
|
|
if _, err = io.Copy(fdst, fsrc); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
err = fsrc.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
err = fdst.Close()
|
|
|
|
}
|
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
if err == nil {
|
|
|
|
err = os.Chmod(dst, fi.Mode())
|
|
|
|
}
|
2018-01-12 21:06:42 +00:00
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
if err == nil {
|
|
|
|
err = os.Chtimes(dst, fi.ModTime(), fi.ModTime())
|
|
|
|
}
|
|
|
|
|
2018-01-12 21:06:42 +00:00
|
|
|
return nil
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// die prints the message with fmt.Fprintf() to stderr and exits with an error
|
|
|
|
// code.
|
|
|
|
func die(message string, args ...interface{}) {
|
|
|
|
fmt.Fprintf(os.Stderr, message, args...)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func showUsage(output io.Writer) {
|
|
|
|
fmt.Fprintf(output, "USAGE: go run build.go OPTIONS\n")
|
|
|
|
fmt.Fprintf(output, "\n")
|
|
|
|
fmt.Fprintf(output, "OPTIONS:\n")
|
2016-07-15 21:42:41 +00:00
|
|
|
fmt.Fprintf(output, " -v --verbose output more messages\n")
|
|
|
|
fmt.Fprintf(output, " -t --tags specify additional build tags\n")
|
|
|
|
fmt.Fprintf(output, " -k --keep-gopath do not remove the GOPATH after build\n")
|
|
|
|
fmt.Fprintf(output, " -T --test run tests\n")
|
2017-01-12 18:51:08 +00:00
|
|
|
fmt.Fprintf(output, " -o --output set output file name\n")
|
2017-05-25 09:03:29 +00:00
|
|
|
fmt.Fprintf(output, " --enable-cgo use CGO to link against libc\n")
|
2016-07-15 21:42:41 +00:00
|
|
|
fmt.Fprintf(output, " --goos value set GOOS for cross-compilation\n")
|
|
|
|
fmt.Fprintf(output, " --goarch value set GOARCH for cross-compilation\n")
|
2018-02-04 14:06:13 +00:00
|
|
|
fmt.Fprintf(output, " --goarm value set GOARM for cross-compilation\n")
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func verbosePrintf(message string, args ...interface{}) {
|
|
|
|
if !verbose {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-26 18:03:26 +00:00
|
|
|
fmt.Printf("build: "+message, args...)
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// cleanEnv returns a clean environment with GOPATH and GOBIN removed (if
|
|
|
|
// present).
|
|
|
|
func cleanEnv() (env []string) {
|
|
|
|
for _, v := range os.Environ() {
|
|
|
|
if strings.HasPrefix(v, "GOPATH=") || strings.HasPrefix(v, "GOBIN=") {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
env = append(env, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
return env
|
|
|
|
}
|
|
|
|
|
|
|
|
// build runs "go build args..." with GOPATH set to gopath.
|
2018-02-04 14:06:13 +00:00
|
|
|
func build(cwd, goos, goarch, goarm, gopath string, args ...string) error {
|
2017-05-29 21:27:25 +00:00
|
|
|
a := []string{"build"}
|
|
|
|
a = append(a, "-asmflags", fmt.Sprintf("-trimpath=%s", gopath))
|
|
|
|
a = append(a, "-gcflags", fmt.Sprintf("-trimpath=%s", gopath))
|
|
|
|
a = append(a, args...)
|
|
|
|
cmd := exec.Command("go", a...)
|
2017-05-25 09:03:29 +00:00
|
|
|
cmd.Env = append(cleanEnv(), "GOPATH="+gopath, "GOARCH="+goarch, "GOOS="+goos)
|
2018-02-04 14:06:13 +00:00
|
|
|
if goarm != "" {
|
|
|
|
cmd.Env = append(cmd.Env, "GOARM="+goarm)
|
|
|
|
}
|
2017-05-25 09:03:29 +00:00
|
|
|
if !enableCGO {
|
|
|
|
cmd.Env = append(cmd.Env, "CGO_ENABLED=0")
|
|
|
|
}
|
|
|
|
|
2016-02-14 16:39:51 +00:00
|
|
|
cmd.Dir = cwd
|
2015-06-24 15:59:31 +00:00
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
verbosePrintf("go %s\n", args)
|
|
|
|
|
|
|
|
return cmd.Run()
|
|
|
|
}
|
|
|
|
|
2015-08-19 18:11:48 +00:00
|
|
|
// test runs "go test args..." with GOPATH set to gopath.
|
2016-02-14 16:39:51 +00:00
|
|
|
func test(cwd, gopath string, args ...string) error {
|
2015-08-19 18:11:48 +00:00
|
|
|
args = append([]string{"test"}, args...)
|
|
|
|
cmd := exec.Command("go", args...)
|
|
|
|
cmd.Env = append(cleanEnv(), "GOPATH="+gopath)
|
2016-02-14 16:39:51 +00:00
|
|
|
cmd.Dir = cwd
|
2015-08-19 18:11:48 +00:00
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
verbosePrintf("go %s\n", args)
|
|
|
|
|
|
|
|
return cmd.Run()
|
|
|
|
}
|
|
|
|
|
2015-08-26 18:13:00 +00:00
|
|
|
// getVersion returns the version string from the file VERSION in the current
|
|
|
|
// directory.
|
|
|
|
func getVersionFromFile() string {
|
2015-08-25 20:20:53 +00:00
|
|
|
buf, err := ioutil.ReadFile("VERSION")
|
|
|
|
if err != nil {
|
|
|
|
verbosePrintf("error reading file VERSION: %v\n", err)
|
2015-08-26 18:13:00 +00:00
|
|
|
return ""
|
2015-08-25 20:20:53 +00:00
|
|
|
}
|
|
|
|
|
2015-08-26 18:13:00 +00:00
|
|
|
return strings.TrimSpace(string(buf))
|
|
|
|
}
|
2015-08-25 20:20:53 +00:00
|
|
|
|
2015-08-26 18:13:00 +00:00
|
|
|
// getVersion returns a version string which is a combination of the contents
|
|
|
|
// of the file VERSION in the current directory and the version from git (if
|
|
|
|
// available).
|
2015-06-24 15:59:31 +00:00
|
|
|
func getVersion() string {
|
2015-08-26 18:13:00 +00:00
|
|
|
versionFile := getVersionFromFile()
|
|
|
|
versionGit := getVersionFromGit()
|
|
|
|
|
|
|
|
verbosePrintf("version from file 'VERSION' is %q, version from git %q\n",
|
|
|
|
versionFile, versionGit)
|
2015-08-25 20:20:53 +00:00
|
|
|
|
2015-08-26 18:13:00 +00:00
|
|
|
switch {
|
|
|
|
case versionFile == "":
|
|
|
|
return versionGit
|
|
|
|
case versionGit == "":
|
|
|
|
return versionFile
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
2015-08-26 18:13:00 +00:00
|
|
|
return fmt.Sprintf("%s (%s)", versionFile, versionGit)
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
2015-08-26 18:13:00 +00:00
|
|
|
// getVersionFromGit returns a version string that identifies the currently
|
|
|
|
// checked out git commit.
|
|
|
|
func getVersionFromGit() string {
|
2015-06-24 15:59:31 +00:00
|
|
|
cmd := exec.Command("git", "describe",
|
|
|
|
"--long", "--tags", "--dirty", "--always")
|
|
|
|
out, err := cmd.Output()
|
|
|
|
if err != nil {
|
2015-08-19 04:31:14 +00:00
|
|
|
verbosePrintf("git describe returned error: %v\n", err)
|
|
|
|
return ""
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
version := strings.TrimSpace(string(out))
|
|
|
|
verbosePrintf("git version is %s\n", version)
|
|
|
|
return version
|
|
|
|
}
|
|
|
|
|
2015-08-26 18:03:16 +00:00
|
|
|
// Constants represents a set of constants that are set in the final binary to
|
|
|
|
// the given value via compiler flags.
|
2015-08-25 20:07:52 +00:00
|
|
|
type Constants map[string]string
|
|
|
|
|
|
|
|
// LDFlags returns the string that can be passed to go build's `-ldflags`.
|
|
|
|
func (cs Constants) LDFlags() string {
|
|
|
|
l := make([]string, 0, len(cs))
|
|
|
|
|
2016-12-01 18:59:09 +00:00
|
|
|
for k, v := range cs {
|
|
|
|
l = append(l, fmt.Sprintf(`-X "%s=%s"`, k, v))
|
2015-08-25 20:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Join(l, " ")
|
|
|
|
}
|
|
|
|
|
2018-01-12 21:06:42 +00:00
|
|
|
// GoVersion is the version of Go used to compile the project.
|
|
|
|
type GoVersion struct {
|
|
|
|
Major int
|
|
|
|
Minor int
|
|
|
|
Patch int
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseGoVersion parses the Go version s. If s cannot be parsed, the returned GoVersion is null.
|
|
|
|
func ParseGoVersion(s string) (v GoVersion) {
|
|
|
|
if !strings.HasPrefix(s, "go") {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
s = s[2:]
|
|
|
|
data := strings.Split(s, ".")
|
|
|
|
if len(data) != 3 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
major, err := strconv.Atoi(data[0])
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
minor, err := strconv.Atoi(data[1])
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
patch, err := strconv.Atoi(data[2])
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
v = GoVersion{
|
|
|
|
Major: major,
|
|
|
|
Minor: minor,
|
|
|
|
Patch: patch,
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// AtLeast returns true if v is at least as new as other. If v is empty, true is returned.
|
|
|
|
func (v GoVersion) AtLeast(other GoVersion) bool {
|
|
|
|
var empty GoVersion
|
|
|
|
|
|
|
|
// the empty version satisfies all versions
|
|
|
|
if v == empty {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
if v.Major < other.Major {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if v.Minor < other.Minor {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if v.Patch < other.Patch {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v GoVersion) String() string {
|
|
|
|
return fmt.Sprintf("Go %d.%d.%d", v.Major, v.Minor, v.Patch)
|
|
|
|
}
|
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
func main() {
|
2018-01-12 21:06:42 +00:00
|
|
|
ver := ParseGoVersion(runtime.Version())
|
|
|
|
if !ver.AtLeast(config.MinVersion) {
|
|
|
|
fmt.Fprintf(os.Stderr, "%s detected, this program requires at least %s\n", ver, config.MinVersion)
|
2017-03-09 10:29:24 +00:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2015-06-24 17:57:08 +00:00
|
|
|
buildTags := []string{}
|
|
|
|
|
|
|
|
skipNext := false
|
|
|
|
params := os.Args[1:]
|
2016-07-15 22:14:41 +00:00
|
|
|
|
2016-07-15 21:42:41 +00:00
|
|
|
targetGOOS := runtime.GOOS
|
|
|
|
targetGOARCH := runtime.GOARCH
|
2018-02-04 14:06:13 +00:00
|
|
|
targetGOARM := ""
|
2016-07-15 22:14:41 +00:00
|
|
|
|
2017-01-12 18:51:08 +00:00
|
|
|
var outputFilename string
|
|
|
|
|
2015-06-24 17:57:08 +00:00
|
|
|
for i, arg := range params {
|
|
|
|
if skipNext {
|
|
|
|
skipNext = false
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
switch arg {
|
|
|
|
case "-v", "--verbose":
|
|
|
|
verbose = true
|
|
|
|
case "-k", "--keep-gopath":
|
|
|
|
keepGopath = true
|
2015-06-24 17:57:08 +00:00
|
|
|
case "-t", "-tags", "--tags":
|
2016-12-03 10:14:30 +00:00
|
|
|
if i+1 >= len(params) {
|
|
|
|
die("-t given but no tag specified")
|
|
|
|
}
|
2015-06-24 17:57:08 +00:00
|
|
|
skipNext = true
|
|
|
|
buildTags = strings.Split(params[i+1], " ")
|
2017-01-12 18:51:08 +00:00
|
|
|
case "-o", "--output":
|
|
|
|
skipNext = true
|
|
|
|
outputFilename = params[i+1]
|
2015-08-19 18:11:48 +00:00
|
|
|
case "-T", "--test":
|
|
|
|
runTests = true
|
2017-05-25 09:03:29 +00:00
|
|
|
case "--enable-cgo":
|
|
|
|
enableCGO = true
|
2016-07-15 21:42:41 +00:00
|
|
|
case "--goos":
|
|
|
|
skipNext = true
|
|
|
|
targetGOOS = params[i+1]
|
|
|
|
case "--goarch":
|
|
|
|
skipNext = true
|
|
|
|
targetGOARCH = params[i+1]
|
2018-02-04 14:06:13 +00:00
|
|
|
case "--goarm":
|
|
|
|
skipNext = true
|
|
|
|
targetGOARM = params[i+1]
|
2015-06-24 15:59:31 +00:00
|
|
|
case "-h":
|
|
|
|
showUsage(os.Stdout)
|
2016-02-14 16:39:51 +00:00
|
|
|
return
|
2015-06-24 15:59:31 +00:00
|
|
|
default:
|
|
|
|
fmt.Fprintf(os.Stderr, "Error: unknown option %q\n\n", arg)
|
|
|
|
showUsage(os.Stderr)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-24 17:57:08 +00:00
|
|
|
if len(buildTags) == 0 {
|
|
|
|
verbosePrintf("adding build-tag release\n")
|
|
|
|
buildTags = []string{"release"}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := range buildTags {
|
|
|
|
buildTags[i] = strings.TrimSpace(buildTags[i])
|
|
|
|
}
|
|
|
|
|
|
|
|
verbosePrintf("build tags: %s\n", buildTags)
|
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
root, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
die("Getwd(): %v\n", err)
|
|
|
|
}
|
|
|
|
|
2016-12-03 10:14:30 +00:00
|
|
|
gopath, err := ioutil.TempDir("", fmt.Sprintf("%v-build-", config.Name))
|
2015-06-24 15:59:31 +00:00
|
|
|
if err != nil {
|
|
|
|
die("TempDir(): %v\n", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
verbosePrintf("create GOPATH at %v\n", gopath)
|
2017-07-21 19:51:01 +00:00
|
|
|
if err = updateGopath(gopath, root, config.Namespace); err != nil {
|
2016-12-03 10:14:30 +00:00
|
|
|
die("copying files from %v/src to %v/src failed: %v\n", root, gopath, err)
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
2017-07-21 19:51:01 +00:00
|
|
|
vendor := filepath.Join(root, "vendor")
|
2016-12-03 10:14:30 +00:00
|
|
|
if directoryExists(vendor) {
|
2017-07-21 19:51:01 +00:00
|
|
|
if err = updateGopath(gopath, vendor, filepath.Join(config.Namespace, "vendor")); err != nil {
|
2016-12-03 10:14:30 +00:00
|
|
|
die("copying files from %v to %v failed: %v\n", root, gopath, err)
|
|
|
|
}
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
2015-08-19 18:11:48 +00:00
|
|
|
defer func() {
|
|
|
|
if !keepGopath {
|
|
|
|
verbosePrintf("remove %v\n", gopath)
|
|
|
|
if err = os.RemoveAll(gopath); err != nil {
|
|
|
|
die("remove GOPATH at %s failed: %v\n", err)
|
|
|
|
}
|
|
|
|
} else {
|
2015-08-26 18:03:16 +00:00
|
|
|
verbosePrintf("leaving temporary GOPATH at %v\n", gopath)
|
2015-08-19 18:11:48 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2017-01-12 18:51:08 +00:00
|
|
|
if outputFilename == "" {
|
|
|
|
outputFilename = config.Name
|
|
|
|
if targetGOOS == "windows" {
|
|
|
|
outputFilename += ".exe"
|
|
|
|
}
|
2016-02-14 16:39:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cwd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
die("Getwd() returned %v\n", err)
|
2015-08-16 12:20:37 +00:00
|
|
|
}
|
2017-07-14 09:54:19 +00:00
|
|
|
output := outputFilename
|
|
|
|
if !filepath.IsAbs(output) {
|
|
|
|
output = filepath.Join(cwd, output)
|
|
|
|
}
|
2016-02-14 16:39:51 +00:00
|
|
|
|
2015-08-19 04:31:14 +00:00
|
|
|
version := getVersion()
|
2016-12-19 20:14:12 +00:00
|
|
|
constants := Constants{}
|
2015-08-19 04:31:14 +00:00
|
|
|
if version != "" {
|
2015-08-25 20:07:52 +00:00
|
|
|
constants["main.version"] = version
|
2015-08-19 04:31:14 +00:00
|
|
|
}
|
2016-07-15 21:42:22 +00:00
|
|
|
ldflags := "-s -w " + constants.LDFlags()
|
2015-08-26 18:03:16 +00:00
|
|
|
verbosePrintf("ldflags: %s\n", ldflags)
|
2015-08-25 20:07:52 +00:00
|
|
|
|
2015-06-24 15:59:31 +00:00
|
|
|
args := []string{
|
2015-06-24 17:57:08 +00:00
|
|
|
"-tags", strings.Join(buildTags, " "),
|
2015-08-19 04:31:14 +00:00
|
|
|
"-ldflags", ldflags,
|
2016-12-03 10:14:30 +00:00
|
|
|
"-o", output, config.Main,
|
2015-08-14 13:08:07 +00:00
|
|
|
}
|
|
|
|
|
2018-02-04 14:06:13 +00:00
|
|
|
err = build(filepath.Join(gopath, "src"), targetGOOS, targetGOARCH, targetGOARM, gopath, args...)
|
2015-06-24 15:59:31 +00:00
|
|
|
if err != nil {
|
2015-08-19 19:40:36 +00:00
|
|
|
die("build failed: %v\n", err)
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
|
2015-08-19 18:11:48 +00:00
|
|
|
if runTests {
|
|
|
|
verbosePrintf("running tests\n")
|
|
|
|
|
2016-12-03 10:14:30 +00:00
|
|
|
err = test(cwd, gopath, config.Tests...)
|
2015-08-19 18:11:48 +00:00
|
|
|
if err != nil {
|
2015-08-19 19:40:36 +00:00
|
|
|
die("running tests failed: %v\n", err)
|
2015-06-24 15:59:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|