neoneo-go/Makefile

39 lines
976 B
Makefile
Raw Normal View History

2018-02-01 18:54:23 +00:00
BRANCH = "master"
BUILD_TIME = "$(shell date -u +\"%Y-%m-%dT%H:%M:%SZ\")"
2018-02-01 18:54:23 +00:00
VERSION = $(shell cat ./VERSION)
REPONAME = "neo-go"
NETMODE ?= "privnet"
2018-02-01 18:54:23 +00:00
2018-02-01 18:06:17 +00:00
build:
@go build -ldflags "-X github.com/CityOfZion/neo-go/config.Version=${VERSION}-dev -X github.com/CityOfZion/neo-go/config.BuildTime=${BUILD_TIME}" -o ./bin/neo-go ./cli/main.go
2018-02-01 18:06:17 +00:00
build-image:
docker build -t cityofzion/neo-go --build-arg VERSION=${VERSION} .
2018-02-01 18:54:23 +00:00
check-version:
git fetch && (! git rev-list ${VERSION})
2018-02-01 18:06:17 +00:00
deps:
2018-02-24 07:23:02 +00:00
@dep ensure
2018-02-01 18:06:17 +00:00
2018-02-01 18:54:23 +00:00
push-tag:
git checkout ${BRANCH}
git pull origin ${BRANCH}
git tag ${VERSION}
git push origin ${VERSION}
2018-02-01 18:54:23 +00:00
push-to-registry:
@docker login -e ${DOCKER_EMAIL} -u ${DOCKER_USER} -p ${DOCKER_PASS}
@docker tag CityOfZion/${REPONAME}:latest CityOfZion/${REPONAME}:${CIRCLE_TAG}
@docker push CityOfZion/${REPONAME}:${CIRCLE_TAG}
@docker push CityOfZion/${REPONAME}
run: build
./bin/neo-go node -config-path ./config -${NETMODE}
2018-02-01 17:40:04 +00:00
test:
2018-02-24 07:23:02 +00:00
@go test ./... -cover
2018-02-01 18:54:23 +00:00
vet:
@go vet ./...