1
0
mirror of https://github.com/go-acme/lego.git synced 2024-11-21 13:25:48 +02:00
lego/Makefile

81 lines
1.7 KiB
Makefile
Raw Normal View History

.PHONY: clean checks test build image e2e fmt
export GO111MODULE=on
2020-03-08 23:19:12 +02:00
export CGO_ENABLED=0
2020-03-01 22:01:41 +02:00
LEGO_IMAGE := goacme/lego
MAIN_DIRECTORY := ./cmd/lego/
2020-03-01 22:01:41 +02:00
BIN_OUTPUT := $(if $(filter $(shell go env GOOS), windows), dist/lego.exe, dist/lego)
2018-11-05 16:14:30 +02:00
TAG_NAME := $(shell git tag -l --contains HEAD)
SHA := $(shell git rev-parse HEAD)
VERSION := $(if $(TAG_NAME),$(TAG_NAME),$(SHA))
default: clean generate-dns checks test build
clean:
2020-03-01 22:01:41 +02:00
@echo BIN_OUTPUT: ${BIN_OUTPUT}
rm -rf dist/ builds/ cover.out
build: clean
2018-11-05 16:14:30 +02:00
@echo Version: $(VERSION)
2022-04-27 17:46:39 +02:00
go build -trimpath -ldflags '-X "main.version=${VERSION}"' -o ${BIN_OUTPUT} ${MAIN_DIRECTORY}
image:
@echo Version: $(VERSION)
docker build -t $(LEGO_IMAGE) .
test: clean
go test -v -cover ./...
e2e: clean
LEGO_E2E_TESTS=local go test -count=1 -v ./e2e/...
checks:
golangci-lint run
2018-12-11 02:14:49 +02:00
# Release helper
.PHONY: patch minor major detach
2018-12-11 02:14:49 +02:00
patch:
go run ./internal/releaser/ release -m patch
2018-12-11 02:14:49 +02:00
minor:
go run ./internal/releaser/ release -m minor
2018-12-11 02:14:49 +02:00
major:
go run ./internal/releaser/ release -m major
2018-12-11 02:14:49 +02:00
detach:
go run ./internal/releaser/ detach
# Docs
.PHONY: docs-build docs-serve docs-themes
docs-build: generate-dns
@make -C ./docs hugo-build
docs-serve: generate-dns
@make -C ./docs hugo
docs-themes:
@make -C ./docs hugo-themes
# DNS Documentation
.PHONY: generate-dns validate-doc
generate-dns:
go generate ./...
validate-doc: generate-dns
2021-03-17 03:27:37 +02:00
validate-doc: DOC_DIRECTORIES := ./docs/ ./cmd/
validate-doc:
2023-01-08 15:53:15 +02:00
@if git diff --exit-code --quiet $(DOC_DIRECTORIES) 2>/dev/null; then \
2021-03-17 03:27:37 +02:00
echo 'All documentation changes are done the right way.'; \
else \
echo 'The documentation must be regenerated, please use `make generate-dns`.'; \
git status --porcelain -- $(DOC_DIRECTORIES) 2>/dev/null; \
exit 2; \
fi