|
20 | 20 | @rm -rf $(BINDIR)
|
21 | 21 | @rm -rf *.log
|
22 | 22 | @rm -rf *.pprof
|
| 23 | + @rm -rf benchmarks/reports |
| 24 | + @rm -rf benchmarks/pngs |
23 | 25 |
|
24 | 26 | # TODO(mattklein123): See the note in TestLinearConcurrentSetWatch() for why we set -parallel here
|
25 | 27 | # This should be removed.
|
@@ -63,30 +65,30 @@ $(BINDIR)/test:
|
63 | 65 | integration: integration.xds integration.ads integration.rest integration.xds.mux integration.xds.delta integration.ads.delta
|
64 | 66 |
|
65 | 67 | integration.ads: $(BINDIR)/test $(BINDIR)/upstream
|
66 |
| - env XDS=ads MODE=0 build/integration.sh |
| 68 | + env XDS=ads build/integration.sh |
67 | 69 |
|
68 | 70 | integration.xds: $(BINDIR)/test $(BINDIR)/upstream
|
69 |
| - env XDS=xds MODE=0 build/integration.sh |
| 71 | + env XDS=xds build/integration.sh |
70 | 72 |
|
71 | 73 | integration.rest: $(BINDIR)/test $(BINDIR)/upstream
|
72 |
| - env XDS=rest MODE=0 build/integration.sh |
| 74 | + env XDS=rest build/integration.sh |
73 | 75 |
|
74 | 76 | integration.xds.mux: $(BINDIR)/test $(BINDIR)/upstream
|
75 |
| - env XDS=xds MODE=0 build/integration.sh -mux |
| 77 | + env XDS=xds build/integration.sh -mux |
76 | 78 |
|
77 | 79 | integration.xds.delta: $(BINDIR)/test $(BINDIR)/upstream
|
78 |
| - env XDS=delta MODE=0 build/integration.sh |
| 80 | + env XDS=delta build/integration.sh |
79 | 81 |
|
80 | 82 | integration.ads.delta: $(BINDIR)/test $(BINDIR)/upstream
|
81 |
| - env XDS=delta-ads MODE=0 build/integration.sh |
| 83 | + env XDS=delta-ads build/integration.sh |
82 | 84 |
|
83 | 85 |
|
84 | 86 | #------------------------------------------------------------------------------
|
85 | 87 | # Benchmarks utilizing intergration tests
|
86 | 88 | #------------------------------------------------------------------------------
|
87 | 89 | .PHONY: benchmark docker_benchmarks
|
88 | 90 | benchmark: $(BINDIR)/test $(BINDIR)/upstream
|
89 |
| - env XDS=xds MODE=$(MODE) build/integration.sh |
| 91 | + env XDS=xds build/integration.sh |
90 | 92 |
|
91 | 93 | docker_benchmarks:
|
92 | 94 | docker build --pull -f Dockerfile.ci . -t gcp_ci && \
|
|
0 commit comments