Skip to content

Commit

Permalink
chore: add [email protected] to transport-interop
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCabeza committed Aug 23, 2024
1 parent 2748dde commit 85c412d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
20 changes: 20 additions & 0 deletions transport-interop/impl/rust/v0.54/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
image_name := rust-v0.54
commitSha :=

all: image.json

image.json: rust-libp2p-${commitSha}
cd rust-libp2p-${commitSha} && IMAGE_NAME=${image_name} ../../../../dockerBuildWrapper.sh -f interop-tests/Dockerfile.native .
docker image inspect ${image_name} -f "{{.Id}}" | \
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@

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 image.json
rm rust-libp2p-*.zip
rm -rf rust-libp2p-*
17 changes: 17 additions & 0 deletions transport-interop/versionsInput.json
Original file line number Diff line number Diff line change
Expand Up @@ -256,5 +256,22 @@
"muxers": [
"yamux"
]
},
{
"id": "rust-v0.54",
"transports": [
"ws",
"tcp",
"quic-v1",
"webrtc-direct"
],
"secureChannels": [
"tls",
"noise"
],
"muxers": [
"mplex",
"yamux"
]
}
]

0 comments on commit 85c412d

Please sign in to comment.