traefik/Makefile

199 lines
6.2 KiB
Makefile
Raw Normal View History

SRCS = $(shell git ls-files '*.go' | grep -v '^vendor/')
2019-03-14 15:22:04 +00:00
TAG_NAME := $(shell git tag -l --contains HEAD)
SHA := $(shell git rev-parse HEAD)
VERSION_GIT := $(if $(TAG_NAME),$(TAG_NAME),$(SHA))
VERSION := $(if $(VERSION),$(VERSION),$(VERSION_GIT))
GIT_BRANCH := $(subst heads/,,$(shell git rev-parse --abbrev-ref HEAD 2>/dev/null))
2024-01-17 10:12:05 +00:00
REPONAME := $(shell echo $(REPO) | tr '[:upper:]' '[:lower:]')
BIN_NAME := traefik
2024-02-14 09:26:07 +00:00
CODENAME ?= cheddar
2024-01-17 10:12:05 +00:00
DATE := $(shell date -u '+%Y-%m-%d_%I:%M:%S%p')
# Default build target
GOOS := $(shell go env GOOS)
GOARCH := $(shell go env GOARCH)
LINT_EXECUTABLES = misspell shellcheck
DOCKER_BUILD_PLATFORMS ?= linux/amd64,linux/arm64
2022-04-05 15:18:07 +00:00
.PHONY: default
#? default: Run `make generate` and `make binary`
2024-01-17 10:12:05 +00:00
default: generate binary
#? dist: Create the "dist" directory
2022-04-05 15:18:07 +00:00
dist:
mkdir -p dist
.PHONY: build-webui-image
#? build-webui-image: Build WebUI Docker image
2019-03-28 10:42:06 +00:00
build-webui-image:
docker build -t traefik-webui -f webui/Dockerfile webui
2022-04-05 15:18:07 +00:00
.PHONY: clean-webui
#? clean-webui: Clean WebUI static generated assets
clean-webui:
rm -r webui/static
mkdir -p webui/static
2022-05-03 15:58:08 +00:00
printf 'For more information see `webui/readme.md`' > webui/static/DONT-EDIT-FILES-IN-THIS-DIRECTORY.md
webui/static/index.html:
$(MAKE) build-webui-image
2022-04-15 09:56:08 +00:00
docker run --rm -v "$(PWD)/webui/static":'/src/webui/static' traefik-webui npm run build:nc
docker run --rm -v "$(PWD)/webui/static":'/src/webui/static' traefik-webui chown -R $(shell id -u):$(shell id -g) ./static
2022-04-05 15:18:07 +00:00
.PHONY: generate-webui
#? generate-webui: Generate WebUI
generate-webui: webui/static/index.html
2019-03-28 10:42:06 +00:00
2024-01-17 10:12:05 +00:00
.PHONY: generate
#? generate: Generate code (Dynamic and Static configuration documentation reference files)
2024-01-17 10:12:05 +00:00
generate:
go generate
2022-04-05 15:18:07 +00:00
.PHONY: binary
#? binary: Build the binary
2024-01-17 10:12:05 +00:00
binary: generate-webui dist
@echo SHA: $(VERSION) $(CODENAME) $(DATE)
CGO_ENABLED=0 GOGC=off GOOS=${GOOS} GOARCH=${GOARCH} go build ${FLAGS[*]} -ldflags "-s -w \
2024-01-17 10:37:50 +00:00
-X github.com/traefik/traefik/v3/pkg/version.Version=$(VERSION) \
-X github.com/traefik/traefik/v3/pkg/version.Codename=$(CODENAME) \
-X github.com/traefik/traefik/v3/pkg/version.BuildDate=$(DATE)" \
2024-01-17 10:12:05 +00:00
-installsuffix nocgo -o "./dist/${GOOS}/${GOARCH}/$(BIN_NAME)" ./cmd/traefik
binary-linux-arm64: export GOOS := linux
binary-linux-arm64: export GOARCH := arm64
binary-linux-arm64:
@$(MAKE) binary
binary-linux-amd64: export GOOS := linux
binary-linux-amd64: export GOARCH := amd64
binary-linux-amd64:
@$(MAKE) binary
binary-windows-amd64: export GOOS := windows
binary-windows-amd64: export GOARCH := amd64
binary-windows-amd64: export BIN_NAME := traefik.exe
binary-windows-amd64:
@$(MAKE) binary
2022-04-05 15:18:07 +00:00
.PHONY: crossbinary-default
#? crossbinary-default: Build the binary for the standard platforms (linux, darwin, windows)
2024-01-17 10:12:05 +00:00
crossbinary-default: generate generate-webui
$(CURDIR)/script/crossbinary-default.sh
2022-04-05 15:18:07 +00:00
.PHONY: test
#? test: Run the unit and integration tests
2024-01-17 10:12:05 +00:00
test: test-unit test-integration
2022-04-05 15:18:07 +00:00
.PHONY: test-unit
#? test-unit: Run the unit tests
test-unit:
2024-01-17 10:12:05 +00:00
GOOS=$(GOOS) GOARCH=$(GOARCH) go test -cover "-coverprofile=cover.out" -v $(TESTFLAGS) ./pkg/... ./cmd/...
2022-04-05 15:18:07 +00:00
.PHONY: test-integration
#? test-integration: Run the integration tests
2024-01-17 10:12:05 +00:00
test-integration: binary
GOOS=$(GOOS) GOARCH=$(GOARCH) go test ./integration -test.timeout=20m -failfast -v $(TESTFLAGS)
.PHONY: test-gateway-api-conformance
2024-02-08 13:15:45 +00:00
#? test-gateway-api-conformance: Run the conformance tests
test-gateway-api-conformance: build-image-dirty
GOOS=$(GOOS) GOARCH=$(GOARCH) go test ./integration -v -test.run K8sConformanceSuite -k8sConformance $(TESTFLAGS)
2024-02-08 13:15:45 +00:00
2022-04-05 15:18:07 +00:00
.PHONY: pull-images
#? pull-images: Pull all Docker images to avoid timeout during integration tests
2019-03-28 10:42:06 +00:00
pull-images:
2022-04-05 15:18:07 +00:00
grep --no-filename -E '^\s+image:' ./integration/resources/compose/*.yml \
| awk '{print $$2}' \
| sort \
| uniq \
| xargs -P 6 -n 1 docker pull
2024-01-17 10:12:05 +00:00
.PHONY: lint
#? lint: Run golangci-lint
2024-01-17 10:12:05 +00:00
lint:
golangci-lint run
2022-04-05 15:18:07 +00:00
.PHONY: validate-files
#? validate-files: Validate code and docs
2024-01-17 10:12:05 +00:00
validate-files: lint
$(foreach exec,$(LINT_EXECUTABLES),\
$(if $(shell which $(exec)),,$(error "No $(exec) in PATH")))
2024-01-17 10:12:05 +00:00
$(CURDIR)/script/validate-misspell.sh
$(CURDIR)/script/validate-shell-script.sh
2019-04-01 13:30:07 +00:00
2022-04-05 15:18:07 +00:00
.PHONY: validate
#? validate: Validate code, docs, and vendor
2024-01-17 10:12:05 +00:00
validate: lint
$(foreach exec,$(EXECUTABLES),\
$(if $(shell which $(exec)),,$(error "No $(exec) in PATH")))
2024-01-17 10:12:05 +00:00
$(CURDIR)/script/validate-vendor.sh
$(CURDIR)/script/validate-misspell.sh
$(CURDIR)/script/validate-shell-script.sh
# Target for building images for multiple architectures.
.PHONY: multi-arch-image-%
multi-arch-image-%: binary-linux-amd64 binary-linux-arm64
docker buildx build $(DOCKER_BUILDX_ARGS) -t traefik/traefik:$* --platform=$(DOCKER_BUILD_PLATFORMS) -f Dockerfile .
2022-04-05 15:18:07 +00:00
.PHONY: build-image
#? build-image: Clean up static directory and build a Docker Traefik image
2024-01-17 10:12:05 +00:00
build-image: export DOCKER_BUILDX_ARGS := --load
build-image: export DOCKER_BUILD_PLATFORMS := linux/$(GOARCH)
build-image: clean-webui
@$(MAKE) multi-arch-image-latest
2022-04-05 15:18:07 +00:00
.PHONY: build-image-dirty
#? build-image-dirty: Build a Docker Traefik image without re-building the webui when it's already built
2024-01-17 10:12:05 +00:00
build-image-dirty: export DOCKER_BUILDX_ARGS := --load
build-image-dirty: export DOCKER_BUILD_PLATFORMS := linux/$(GOARCH)
build-image-dirty:
@$(MAKE) multi-arch-image-latest
2022-04-05 15:18:07 +00:00
.PHONY: docs
#? docs: Build documentation site
docs:
make -C ./docs docs
2022-04-05 15:18:07 +00:00
.PHONY: docs-serve
#? docs-serve: Serve the documentation site locally
docs-serve:
make -C ./docs docs-serve
2017-10-11 12:46:03 +00:00
2022-04-05 15:18:07 +00:00
.PHONY: docs-pull-images
#? docs-pull-images: Pull image for doc building
docs-pull-images:
make -C ./docs docs-pull-images
2022-04-05 15:18:07 +00:00
.PHONY: generate-crd
#? generate-crd: Generate CRD clientset and CRD manifests
generate-crd:
@$(CURDIR)/script/code-gen-docker.sh
2022-04-05 15:18:07 +00:00
.PHONY: generate-genconf
#? generate-genconf: Generate code from dynamic configuration github.com/traefik/genconf
generate-genconf:
go run ./cmd/internal/gen/
2022-04-05 15:18:07 +00:00
.PHONY: release-packages
#? release-packages: Create packages for the release
release-packages: generate-webui
2024-01-17 10:12:05 +00:00
$(CURDIR)/script/release-packages.sh
2019-03-28 10:42:06 +00:00
2022-04-05 15:18:07 +00:00
.PHONY: fmt
#? fmt: Format the Code
2019-03-28 10:42:06 +00:00
fmt:
gofmt -s -l -w $(SRCS)
.PHONY: help
#? help: Get more info on make commands
help: Makefile
@echo " Choose a command run in traefik:"
@sed -n 's/^#?//p' $< | column -t -s ':' | sort | sed -e 's/^/ /'