mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-01-12 15:54:09 +00:00
53ff8b5db1
This project includes the following components: - `terraform/`: a Terraform scripts to provision infrastructure - `impl/`: implementations of the [libp2p perf protocol](https://github.com/libp2p/specs/blob/master/perf/perf.md) running on top of e.g. go-libp2p, rust-libp2p or Go's std-library https stack - `runner/`: a set of scripts building and running the above implementations on the above infrastructure, reporting the results in `benchmark-results.json` Benchmark results can be visualized with https://observablehq.com/@mxinden-workspace/libp2p-performance-dashboard. Co-authored-by: Marco Munizaga <git@marcopolo.io> Co-authored-by: Marten Seemann <martenseemann@gmail.com> Co-authored-by: Piotr Galar <piotr.galar@gmail.com>
25 lines
762 B
Makefile
25 lines
762 B
Makefile
GO_SUBDIRS := $(wildcard go-libp2p/*/.)
|
|
RUST_SUBDIRS := $(wildcard rust-libp2p/*/.)
|
|
RUST_QUINN_SUBDIRS := $(wildcard rust-libp2p-quinn/*/.)
|
|
HTTPS_SUBDIRS := $(wildcard https/*/.)
|
|
QUIC_GO_SUBDIRS := $(wildcard quic-go/*/.)
|
|
|
|
all: $(RUST_SUBDIRS) $(RUST_QUINN_SUBDIRS) $(GO_SUBDIRS) $(HTTPS_SUBDIRS) $(QUIC_GO_SUBDIRS)
|
|
$(RUST_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
$(RUST_QUINN_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
$(GO_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
$(HTTPS_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
$(QUIC_GO_SUBDIRS):
|
|
$(MAKE) -C $@
|
|
|
|
clean: $(RUST_SUBDIRS:%=%clean) $(RUST_QUINN_SUBDIRS:%=%clean) $(GO_SUBDIRS:%=%clean) $(HTTPS_SUBDIRS:%=%clean) $(QUIC_GO_SUBDIRS:%=%clean)
|
|
|
|
%clean:
|
|
$(MAKE) -C $* clean
|
|
|
|
.PHONY: $(RUST_SUBDIRS) $(RUST_QUINN_SUBDIRS) $(GO_SUBDIRS) $(HTTPS_SUBDIRS) $(QUIC_GO_SUBDIRS) all clean
|