Skip to content

Commit afe40e6

Browse files
committed
fix(perf): replace rust-libp2p-quinn/ with rust-libp2p/master
With libp2p/rust-libp2p#3454 merged we can now test the new rust-libp2p QUIC implementation based on upstream quinn directly from rust-libp2p `master`. This commit does the following in libp2p/test-plans: 1. Remove the `perf/impl/rust-libp2p-quinn` implementation. 2. Introduce the `perf/impl/rust-libp2p/master` version of the rust-libp2p implementation. We can promote the latter to a proper version on the next rust-libp2p release.
1 parent 003ac2c commit afe40e6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

perf/impl/rust-libp2p-quinn/v0.52/Makefile perf/impl/rust-libp2p/master/Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
commitSha := 3287f079a8faf5e633a85edae2e76bf490ef1e51
1+
commitSha := c86b665a653626f5eca30c4f8811a2a08c3fbb20
22

33
all: perf
44

@@ -12,11 +12,11 @@ rust-libp2p-${commitSha}: rust-libp2p-${commitSha}.zip
1212
unzip -o rust-libp2p-${commitSha}.zip
1313

1414
rust-libp2p-${commitSha}.zip:
15-
# TODO: Change to libp2p
16-
wget -O $@ "https://github.com/mxinden/rust-libp2p/archive/${commitSha}.zip"
15+
wget -O $@ "https://github.com/libp2p/rust-libp2p/archive/${commitSha}.zip"
1716

1817
clean:
1918
rm rust-libp2p-*.zip
2019
rm -rf rust-libp2p-*
20+
rm perf
2121

22-
.PHONY: all clean run
22+
.PHONY: all clean

perf/runner/src/versions.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ export const versions: Array<Version> = [
1616
transportStacks: ["tcp", "quic-v1"]
1717
},
1818
{
19-
id: "v0.52",
20-
implementation: "rust-libp2p-quinn",
21-
transportStacks: ["quic-v1"]
19+
id: "master",
20+
implementation: "rust-libp2p",
21+
transportStacks: ["tcp", "quic-v1"]
2222
},
2323
{
2424
id: "v0.1",

0 commit comments

Comments
 (0)