0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2024-12-16 21:56:37 -05:00
zot/Makefile

37 lines
740 B
Makefile
Raw Normal View History

2019-06-20 18:36:40 -05:00
export GO111MODULE=on
.PHONY: all
all: doc binary debug test check
.PHONY: binary
binary: doc
go build -v -o bin/zot -tags=jsoniter ./cmd/zot
.PHONY: debug
debug: doc
go build -v -gcflags '-N -l' -o bin/zot-debug -tags=jsoniter ./cmd/zot
.PHONY: test
test:
go test -v -race -cover ./pkg/... ./cmd/...
./bin/golangci-lint:
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s v1.17.1
.PHONY: check
check: ./bin/golangci-lint
./bin/golangci-lint run --enable-all ./cmd/... ./pkg/...
.PHONY: doc
doc:
swag -v || go get -u github.com/swaggo/swag/cmd/swag
swag init -g pkg/api/routes.go
.PHONY: clean
clean:
rm -f bin/zot*
.PHONY: run
run: binary test
./bin/zot serve examples/config-test.json