mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-02-05 03:25:33 +00:00
chore: add go-libp2p v0.30 and remove v0.27 and v0.28 (#269)
* chore: add go-libp2p v0.30 and remove v0.27 and v0.28 * remove quic and mplex in v0.30
This commit is contained in:
parent
7d5710dbdb
commit
055eb0745d
32
multidim-interop/impl/go/v0.30/Makefile
Normal file
32
multidim-interop/impl/go/v0.30/Makefile
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
image_name := go-v0.30
|
||||||
|
version := 0.30.0
|
||||||
|
|
||||||
|
all: image.json
|
||||||
|
|
||||||
|
image.json: verify-checksum go-libp2p-${version}
|
||||||
|
cd go-libp2p-${version} && IMAGE_NAME=${image_name} ../../../../dockerBuildWrapper.sh -f test-plans/PingDockerfile .
|
||||||
|
docker image inspect ${image_name} -f "{{.Id}}" | \
|
||||||
|
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
|
||||||
|
|
||||||
|
go-libp2p-${version}: go-libp2p-${version}.zip
|
||||||
|
unzip -o go-libp2p-${version}.zip
|
||||||
|
|
||||||
|
go-libp2p-${version}.zip:
|
||||||
|
wget -O $@ "https://github.com/libp2p/go-libp2p/archive/v${version}.zip"
|
||||||
|
|
||||||
|
# Run `make version.lock` to generate this lock file. This file should be commited.
|
||||||
|
# This locks the exact contents of the specified version. This lets us use the
|
||||||
|
# human readable name while still making sure the contents don't change.
|
||||||
|
version.lock: go-libp2p-${version}.zip
|
||||||
|
shasum -a 256 go-libp2p-${version}.zip > $@
|
||||||
|
|
||||||
|
verify-checksum: go-libp2p-${version}.zip
|
||||||
|
shasum -a 256 -c version.lock
|
||||||
|
|
||||||
|
.PHONY: clean all verify-checksum
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm image.json
|
||||||
|
rm go-libp2p-*.zip
|
||||||
|
rm -rf go-libp2p-*
|
||||||
|
|
1
multidim-interop/impl/go/v0.30/version.lock
Normal file
1
multidim-interop/impl/go/v0.30/version.lock
Normal file
@ -0,0 +1 @@
|
|||||||
|
ce648ef713f6c68f9edf88e725605702ceb665ddc4c8a1b528f738a8689db1f3 go-libp2p-0.30.0.zip
|
@ -95,24 +95,18 @@ export const versions: Array<Version> = [
|
|||||||
secureChannels: ["noise"],
|
secureChannels: ["noise"],
|
||||||
muxers: ["mplex", "yamux"],
|
muxers: ["mplex", "yamux"],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: "go-v0.30",
|
||||||
|
transports: ["tcp", "ws", "quic-v1", "webtransport"],
|
||||||
|
secureChannels: ["tls", "noise"],
|
||||||
|
muxers: ["yamux"],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: "go-v0.29",
|
id: "go-v0.29",
|
||||||
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport"],
|
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport"],
|
||||||
secureChannels: ["tls", "noise"],
|
secureChannels: ["tls", "noise"],
|
||||||
muxers: ["mplex", "yamux"],
|
muxers: ["mplex", "yamux"],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
id: "go-v0.28",
|
|
||||||
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport"],
|
|
||||||
secureChannels: ["tls", "noise"],
|
|
||||||
muxers: ["mplex", "yamux"],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "go-v0.27",
|
|
||||||
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport"],
|
|
||||||
secureChannels: ["tls", "noise"],
|
|
||||||
muxers: ["mplex", "yamux"],
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "nim-v1.0",
|
id: "nim-v1.0",
|
||||||
transports: ["tcp", "ws"],
|
transports: ["tcp", "ws"],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user