mirror of
https://gitea.com/gitea/tea.git
synced 2026-02-22 06:13:32 +01:00
Reviewed-on: https://gitea.com/gitea/tea/pulls/879 Co-authored-by: techknowlogick <techknowlogick@gitea.com> Co-committed-by: techknowlogick <techknowlogick@gitea.com>
126 lines
2.9 KiB
Makefile
126 lines
2.9 KiB
Makefile
DIST := dist
|
|
GO ?= go
|
|
SHASUM ?= shasum -a 256
|
|
|
|
export PATH := $($(GO) env GOPATH)/bin:$(PATH)
|
|
|
|
GOFILES := $(shell find . -name "*.go" -type f ! -path "*/bindata.go")
|
|
|
|
# Tool packages with pinned versions
|
|
GOFUMPT_PACKAGE ?= mvdan.cc/gofumpt@v0.9.2
|
|
GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.8.0
|
|
|
|
ifneq ($(DRONE_TAG),)
|
|
VERSION ?= $(subst v,,$(DRONE_TAG))
|
|
TEA_VERSION ?= $(VERSION)
|
|
else
|
|
ifneq ($(DRONE_BRANCH),)
|
|
VERSION ?= $(subst release/v,,$(DRONE_BRANCH))
|
|
else
|
|
VERSION ?= main
|
|
endif
|
|
TEA_VERSION ?= $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')
|
|
endif
|
|
TEA_VERSION_TAG ?= $(shell sed 's/+/_/' <<< $(TEA_VERSION))
|
|
|
|
TAGS ?=
|
|
SDK ?= $(shell $(GO) list -f '{{.Version}}' -m code.gitea.io/sdk/gitea)
|
|
LDFLAGS := -X "code.gitea.io/tea/cmd.Version=$(TEA_VERSION)" -X "code.gitea.io/tea/cmd.Tags=$(TAGS)" -X "code.gitea.io/tea/cmd.SDK=$(SDK)" -s -w
|
|
|
|
# override to allow passing additional goflags via make CLI
|
|
override GOFLAGS := $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)'
|
|
|
|
PACKAGES ?= $(shell $(GO) list ./...)
|
|
SOURCES ?= $(shell find . -name "*.go" -type f)
|
|
|
|
# OS specific vars.
|
|
ifeq ($(OS), Windows_NT)
|
|
EXECUTABLE := tea.exe
|
|
VET_TOOL := gitea-vet.exe
|
|
else
|
|
EXECUTABLE := tea
|
|
VET_TOOL := gitea-vet
|
|
endif
|
|
|
|
.PHONY: all
|
|
all: build
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(GO) clean -i ./...
|
|
rm -rf $(EXECUTABLE) $(DIST)
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
$(GO) run $(GOFUMPT_PACKAGE) -w $(GOFILES)
|
|
|
|
.PHONY: vet
|
|
vet:
|
|
# Default vet
|
|
$(GO) vet $(PACKAGES)
|
|
# Custom vet
|
|
$(GO) build code.gitea.io/gitea-vet
|
|
$(GO) vet -vettool=$(VET_TOOL) $(PACKAGES)
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
$(GO) run $(GOLANGCI_LINT_PACKAGE) run
|
|
|
|
.PHONY: lint-fix
|
|
lint-fix:
|
|
$(GO) run $(GOLANGCI_LINT_PACKAGE) run --fix
|
|
|
|
.PHONY: fmt-check
|
|
fmt-check:
|
|
# get all go files and run gofumpt on them
|
|
@diff=$$($(GO) run $(GOFUMPT_PACKAGE) -d $(GOFILES)); \
|
|
if [ -n "$$diff" ]; then \
|
|
echo "Please run 'make fmt' and commit the result:"; \
|
|
echo "$${diff}"; \
|
|
exit 1; \
|
|
fi;
|
|
|
|
.PHONY: docs
|
|
docs:
|
|
$(GO) run docs/docs.go --out docs/CLI.md
|
|
|
|
.PHONY: docs-check
|
|
docs-check:
|
|
@DIFF=$$($(GO) run docs/docs.go | diff docs/CLI.md -); \
|
|
if [ -n "$$DIFF" ]; then \
|
|
echo "Please run 'make docs' and commit the result:"; \
|
|
echo "$$DIFF"; \
|
|
exit 1; \
|
|
fi;
|
|
|
|
.PHONY: test
|
|
test:
|
|
$(GO) test -tags='sqlite sqlite_unlock_notify' $(PACKAGES)
|
|
|
|
.PHONY: unit-test-coverage
|
|
unit-test-coverage:
|
|
$(GO) test -tags='sqlite sqlite_unlock_notify' -cover -coverprofile coverage.out $(PACKAGES) && echo "\n==>\033[32m Ok\033[m\n" || exit 1
|
|
|
|
.PHONY: tidy
|
|
tidy:
|
|
$(GO) mod tidy
|
|
|
|
.PHONY: check
|
|
check: test
|
|
|
|
.PHONY: install
|
|
install: $(SOURCES)
|
|
@echo "installing to $(shell $(GO) env GOPATH)/bin/$(EXECUTABLE)"
|
|
$(GO) install -v $(BUILDMODE) $(GOFLAGS)
|
|
|
|
.PHONY: build
|
|
build: $(EXECUTABLE)
|
|
|
|
$(EXECUTABLE): $(SOURCES)
|
|
$(GO) build $(BUILDMODE) $(GOFLAGS) -o $@
|
|
|
|
.PHONY: build-image
|
|
build-image:
|
|
docker build --build-arg VERSION=$(TEA_VERSION) -t gitea/tea:$(TEA_VERSION_TAG) .
|
|
|