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

61 lines
1.8 KiB
Makefile
Raw Normal View History

2019-06-20 18:36:40 -05:00
export GO111MODULE=on
TOP_LEVEL=$(shell git rev-parse --show-toplevel)
COMMIT_HASH=$(shell git describe --always --tags --long)
COMMIT=$(if $(shell git status --porcelain --untracked-files=no),$(COMMIT_HASH)-dirty,$(COMMIT_HASH))
CONTAINER_RUNTIME := $(shell command -v podman 2> /dev/null || echo docker)
PATH := bin:$(PATH)
2019-06-20 18:36:40 -05:00
.PHONY: all
all: doc binary debug test check
.PHONY: binary
binary: doc
go build -v -ldflags "-X github.com/anuvu/zot/pkg/api.Commit=${COMMIT}" -o bin/zot -tags=jsoniter ./cmd/zot
2019-06-20 18:36:40 -05:00
.PHONY: debug
debug: doc
go build -v -gcflags all='-N -l' -ldflags "-X github.com/anuvu/zot/pkg/api.Commit=${COMMIT}" -o bin/zot-debug -tags=jsoniter ./cmd/zot
2019-06-20 18:36:40 -05:00
.PHONY: test
test:
$(shell mkdir -p test/data; cd test/data; ../scripts/gen_certs.sh; cd ${TOP_LEVEL})
go test -v -race -cover -coverpkg ./... -coverprofile=coverage.txt -covermode=atomic ./...
2019-06-20 18:36:40 -05:00
.PHONY: covhtml
covhtml:
go tool cover -html=coverage.txt -o coverage.html
2019-06-20 18:36:40 -05:00
.PHONY: check
2019-08-15 11:34:54 -05:00
check: .bazel/golangcilint.yaml
golangci-lint --version || curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s v1.21.0
golangci-lint --config .bazel/golangcilint.yaml run --enable-all ./cmd/... ./pkg/...
2019-06-20 18:36:40 -05:00
2019-08-28 17:58:00 -05:00
docs/docs.go:
swag -v || go install github.com/swaggo/swag/cmd/swag
2019-06-20 18:36:40 -05:00
swag init -g pkg/api/routes.go
2019-08-28 17:58:00 -05:00
.PHONY: doc
doc: docs/docs.go
2019-06-20 18:36:40 -05:00
.PHONY: clean
clean:
rm -f bin/zot*
2019-06-20 18:36:40 -05:00
.PHONY: run
run: binary test
./bin/zot serve examples/config-test.json
.PHONY: binary-container
binary-container:
${CONTAINER_RUNTIME} build ${BUILD_ARGS} -f Dockerfile.build -t zot-build:latest .
${CONTAINER_RUNTIME} run --rm --security-opt label=disable -v $$(pwd):/go/src/github.com/anuvu/zot \
zot-build:latest make
.PHONY: binary-stacker
binary-stacker:
stacker build --substitute PWD=$$PWD --no-cache
.PHONY: image
image:
${CONTAINER_RUNTIME} build ${BUILD_ARGS} -f Dockerfile -t zot:latest .