mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
dfd8b84344
Signed-off-by: Josh Dolitsky <393494+jdolitsky@users.noreply.github.com>
56 lines
1.7 KiB
Makefile
56 lines
1.7 KiB
Makefile
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)
|
|
|
|
.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
|
|
|
|
.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
|
|
|
|
.PHONY: test
|
|
test:
|
|
$(shell mkdir -p test/data; cd test/data; ../scripts/gen_certs.sh; cd ${TOP_LEVEL})
|
|
go test -v -race -cover -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
.PHONY: check
|
|
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/...
|
|
|
|
docs/docs.go:
|
|
swag -v || go install github.com/swaggo/swag/cmd/swag
|
|
swag init -g pkg/api/routes.go
|
|
|
|
.PHONY: doc
|
|
doc: docs/docs.go
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f bin/zot*
|
|
|
|
.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 .
|