mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-02-22 11:38:12 +00:00
Update `perf/impl/rust-libp2p/v0.53` to rust-libp2p `v0.53.2`. With this patch release comes the rust-yamux stream receive window auto-tuning. https://github.com/libp2p/rust-libp2p/pull/4970 https://github.com/libp2p/rust-libp2p/releases/tag/libp2p-v0.53.2
23 lines
700 B
Makefile
23 lines
700 B
Makefile
commitSha := b7914e407da34c99fb76dcc300b3d44b9af97fac
|
|
|
|
all: perf
|
|
|
|
perf: rust-libp2p-${commitSha}/target/release/perf
|
|
cp ./rust-libp2p-${commitSha}/target/release/perf .
|
|
|
|
rust-libp2p-${commitSha}/target/release/perf: rust-libp2p-${commitSha}
|
|
docker run --rm --user "$(shell id -u):$(shell id -g)" -v "$(shell pwd)/rust-libp2p-${commitSha}":/usr/src/myapp -w /usr/src/myapp rust:1.73 cargo build --release --bin perf
|
|
|
|
rust-libp2p-${commitSha}: rust-libp2p-${commitSha}.zip
|
|
unzip -o rust-libp2p-${commitSha}.zip
|
|
|
|
rust-libp2p-${commitSha}.zip:
|
|
wget -O $@ "https://github.com/libp2p/rust-libp2p/archive/${commitSha}.zip"
|
|
|
|
clean:
|
|
rm rust-libp2p-*.zip
|
|
rm -rf rust-libp2p-*
|
|
rm perf
|
|
|
|
.PHONY: all clean
|