1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
.DEFAULT_GOAL := build
#------------------------------------------------------------------------------
# Variables
#------------------------------------------------------------------------------
SHELL := /bin/bash
BINDIR := bin
PKG := github.com/envoyproxy/go-control-plane
.PHONY: build
build:
@go build ./pkg/... ./envoy/...
.PHONY: clean
clean:
@echo "--> cleaning compiled objects and binaries"
@go clean -tags netgo -i ./...
@go mod tidy
@rm -rf $(BINDIR)
@rm -rf *.log
# TODO(mattklein123): See the note in TestLinearConcurrentSetWatch() for why we set -parallel here
# This should be removed.
.PHONY: test
test:
@go test -race -v -timeout 30s -count=1 -parallel 100 ./pkg/...
.PHONY: cover
cover:
@build/coverage.sh
.PHONY: format
format:
@goimports -local $(PKG) -w -l pkg
.PHONY: examples
examples:
@pushd examples/dyplomat && go build ./... && popd
.PHONY: lint
lint:
@docker run \
--rm \
--volume $$(pwd):/src \
--workdir /src \
golangci/golangci-lint:latest \
golangci-lint -v run
#-----------------
#-- integration
#-----------------
.PHONY: $(BINDIR)/test $(BINDIR)/upstream integration integration.ads integration.xds integration.rest integration.xds.mux integration.xds.delta integration.ads.delta
$(BINDIR)/upstream:
@go build -race -o $@ internal/upstream/main.go
$(BINDIR)/test:
@echo "Building test binary"
@go build -race -o $@ pkg/test/main/main.go
integration: integration.xds integration.ads integration.rest integration.xds.mux integration.xds.delta integration.ads.delta
integration.ads: $(BINDIR)/test $(BINDIR)/upstream
env XDS=ads build/integration.sh
integration.xds: $(BINDIR)/test $(BINDIR)/upstream
env XDS=xds build/integration.sh
integration.rest: $(BINDIR)/test $(BINDIR)/upstream
env XDS=rest build/integration.sh
integration.xds.mux: $(BINDIR)/test $(BINDIR)/upstream
env XDS=xds build/integration.sh -mux
integration.xds.delta: $(BINDIR)/test $(BINDIR)/upstream
env XDS=delta build/integration.sh
integration.ads.delta: $(BINDIR)/test $(BINDIR)/upstream
env XDS=delta-ads build/integration.sh
#--------------------------------------
#-- example xDS control plane server
#--------------------------------------
.PHONY: $(BINDIR)/example example
$(BINDIR)/example:
@go build -race -o $@ internal/example/main/main.go
example: $(BINDIR)/example
@build/example.sh
.PHONY: docker_tests
docker_tests:
docker build --pull -f Dockerfile.ci . -t gcp_ci && \
docker run -v $$(pwd):/go-control-plane $$(tty -s && echo "-it" || echo) gcp_ci /bin/bash -c /go-control-plane/build/do_ci.sh
|