Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 457 Bytes

development.md

File metadata and controls

16 lines (15 loc) · 457 Bytes

Multi-platform Builds

go get github.com/mitchellh/gox
gox -ldflags "-X github.com/derekbekoe/convey/cmd.VersionGitCommit=$(git rev-list -1 HEAD) -X github.com/derekbekoe/convey/cmd.VersionGitTag=VERSION" -os="linux darwin" -arch="amd64" -output="bin/{{.Dir}}_{{.OS}}_{{.Arch}}"

See https://golang.org/doc/install/source#environment

Go Module Verification

go mod tidy
# verification
go build
go test
# list all
go list -m all