435c0d9fc8
This PR switches the Nomad repository from using govendor to Go modules for managing dependencies. Aspects of the Nomad workflow remain pretty much the same. The usual Makefile targets should continue to work as they always did. The API submodule simply defers to the parent Nomad version on the repository, keeping the semantics of API versioning that currently exists.
47 lines
816 B
Go
47 lines
816 B
Go
// +build go1.12
|
|
|
|
package version
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime/debug"
|
|
)
|
|
|
|
func printBuildInfo() {
|
|
if info, ok := debug.ReadBuildInfo(); ok {
|
|
fmt.Println("Main module:")
|
|
printModule(&info.Main)
|
|
fmt.Println("Dependencies:")
|
|
for _, dep := range info.Deps {
|
|
printModule(dep)
|
|
}
|
|
} else {
|
|
fmt.Println("Built without Go modules")
|
|
}
|
|
}
|
|
|
|
func buildInfoVersion() (string, bool) {
|
|
info, ok := debug.ReadBuildInfo()
|
|
if !ok {
|
|
return "", false
|
|
}
|
|
if info.Main.Version == "(devel)" {
|
|
return "", false
|
|
}
|
|
return info.Main.Version, true
|
|
}
|
|
|
|
func printModule(m *debug.Module) {
|
|
fmt.Printf("\t%s", m.Path)
|
|
if m.Version != "(devel)" {
|
|
fmt.Printf("@%s", m.Version)
|
|
}
|
|
if m.Sum != "" {
|
|
fmt.Printf(" (sum: %s)", m.Sum)
|
|
}
|
|
if m.Replace != nil {
|
|
fmt.Printf(" (replace: %s)", m.Replace.Path)
|
|
}
|
|
fmt.Println()
|
|
}
|