mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-02-17 09:16:41 +00:00
* chore: add go-libp2p@v0.31.0 to perf/impl/go-libp2p * perf: update benchmark results --------- Co-authored-by: galargh <galargh@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
13 lines
332 B
Makefile
13 lines
332 B
Makefile
GO_FILES := $(wildcard *.go)
|
|
|
|
all: perf
|
|
|
|
perf: $(GO_FILES)
|
|
docker run --rm --user "$(shell id -u):$(shell id -g)" -v "$(shell pwd)":/usr/src/myapp -w /usr/src/myapp -e GOCACHE=/usr/src/myapp/.cache golang:$(shell awk '/^go [0-9]+\.[0-9]+$$/ {print $$2}' go.mod) go build -o perf .
|
|
|
|
clean:
|
|
rm -r .cache
|
|
rm perf
|
|
|
|
.PHONY: all clean
|