forked from envoyproxy/go-control-plane
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
72 lines (53 loc) · 1.91 KB
/
Makefile
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
.DEFAULT_GOAL := build
#------------------------------------------------------------------------------
# Variables
#------------------------------------------------------------------------------
SHELL := /bin/bash
BINDIR := bin
PKG := github.com/envoyproxy/go-control-plane
.PHONY: build
build:
@go build ./pkg/... ./envoy/...
# 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 -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
#-----------------
#-- integration
#-----------------
.PHONY: $(BINDIR)/test $(BINDIR)/upstream integration integration.ads integration.xds integration.rest integration.xds.mux
$(BINDIR)/upstream:
@go build -race -o $@ internal/upstream/main.go
$(BINDIR)/test:
@go build -race -o $@ pkg/test/main/main.go
integration: integration.xds integration.ads integration.rest integration.xds.mux
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
#--------------------------------------
#-- 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