2018-11-05 14:14:30 +00:00
|
|
|
.PHONY: clean checks test build image dependencies
|
2018-05-29 17:40:00 +00:00
|
|
|
|
2018-11-05 14:14:30 +00:00
|
|
|
LEGO_IMAGE := xenolf/lego
|
|
|
|
|
|
|
|
TAG_NAME := $(shell git tag -l --contains HEAD)
|
|
|
|
SHA := $(shell git rev-parse HEAD)
|
|
|
|
VERSION := $(if $(TAG_NAME),$(TAG_NAME),$(SHA))
|
2018-05-29 17:40:00 +00:00
|
|
|
|
2018-05-30 22:03:55 +00:00
|
|
|
default: clean checks test build
|
2018-05-29 17:40:00 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf dist/ builds/ cover.out
|
|
|
|
|
|
|
|
build: clean
|
2018-11-05 14:14:30 +00:00
|
|
|
@echo Version: $(VERSION)
|
|
|
|
go build -v -ldflags '-X "main.version=${VERSION}"'
|
2018-05-30 22:03:55 +00:00
|
|
|
|
2018-05-30 22:28:41 +00:00
|
|
|
dependencies:
|
|
|
|
dep ensure -v
|
|
|
|
|
2018-05-30 22:03:55 +00:00
|
|
|
test: clean
|
|
|
|
go test -v -cover ./...
|
|
|
|
|
2018-09-24 19:07:20 +00:00
|
|
|
checks:
|
|
|
|
golangci-lint run
|
2018-05-30 22:03:55 +00:00
|
|
|
|
2018-11-05 14:14:30 +00:00
|
|
|
image:
|
|
|
|
@echo Version: $(VERSION)
|
|
|
|
docker build -t $(LEGO_IMAGE) .
|