fix build
This commit is contained in:
parent
db5a32cda8
commit
6944de6d85
27
Makefile
27
Makefile
|
@ -1,8 +1,5 @@
|
||||||
VERSION = $(shell git describe --tags)
|
VERSION = $(shell git describe --tags)
|
||||||
|
BUILDTIME = $(shell date +%Y.%m.%d)
|
||||||
# create the go.mod and go.sum if this is a brand new repo
|
|
||||||
# REDOMOD = $(shell if [ -e go.mod ]; then echo go.mod; else echo no go mod; fi)
|
|
||||||
REDOMOD = $(shell if [ -e go.sum ]; then echo go.sum exists; else GO111MODULE= go mod init; GO111MODULE= go mod tidy; fi)
|
|
||||||
|
|
||||||
all: build
|
all: build
|
||||||
./virtigoctl --version
|
./virtigoctl --version
|
||||||
|
@ -10,12 +7,16 @@ all: build
|
||||||
make dump-droplets
|
make dump-droplets
|
||||||
|
|
||||||
build:
|
build:
|
||||||
GO111MODULE=off go build -v -ldflags "-X main.Version=${VERSION} -X gui.GUIVERSION=${VERSION}"
|
GO111MODULE=off go build \
|
||||||
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||||
|
|
||||||
# this is for release builds using the go.mod files
|
verbose:
|
||||||
release-build:
|
GO111MODULE=off go build -v -x \
|
||||||
@echo ${REDOMOD}
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||||
go build -v -ldflags "-X main.Version=${VERSION} -X gui.GUIVERSION=${VERSION}"
|
|
||||||
|
install:
|
||||||
|
GO111MODULE=off go install \
|
||||||
|
-ldflags "-X main.VERSION=${VERSION} -X main.BUILDTIME=${BUILDTIME} -X gui.GUIVERSION=${VERSION}"
|
||||||
|
|
||||||
# autofixes your import headers in your golang files
|
# autofixes your import headers in your golang files
|
||||||
goimports:
|
goimports:
|
||||||
|
@ -31,14 +32,6 @@ clean:
|
||||||
rm -f go.*
|
rm -f go.*
|
||||||
rm -f virtigo*
|
rm -f virtigo*
|
||||||
|
|
||||||
# git clone the sources and all the golang dependancies into ~/go/src
|
|
||||||
# if you don't have go-clone, you can get it from http://go.wit.com/
|
|
||||||
git-clone:
|
|
||||||
go-clone --recursive --go-src --no-work go.wit.com/apps/go-clone
|
|
||||||
go-clone --recursive --go-src --no-work go.wit.com/apps/virtigo
|
|
||||||
go-clone --recursive --go-src --no-work go.wit.com/apps/gowebd
|
|
||||||
go-clone --recursive --go-src --no-work go.wit.com/lib/daemons/virtigod
|
|
||||||
|
|
||||||
dump-uptime:
|
dump-uptime:
|
||||||
./virtigoctl dump --uptime=true
|
./virtigoctl dump --uptime=true
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue