mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-01-27 15:14:47 +00:00
chore: update go-libp2p releases and rm v0.25 & v0.26 (#252)
This commit is contained in:
parent
e0b459639a
commit
55e43bd610
@ -1,20 +0,0 @@
|
||||
image_name := go-v0.25
|
||||
commitSha := 5741b6c9bbcc1185bdf94d816dca966b37ce61ff
|
||||
|
||||
all: image.json
|
||||
|
||||
image.json: go-libp2p-${commitSha}
|
||||
cd go-libp2p-${commitSha} && IMAGE_NAME=${image_name} ../../../../dockerBuildWrapper.sh -f test-plans/PingDockerfile .
|
||||
docker image inspect ${image_name} -f "{{.Id}}" | \
|
||||
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
|
||||
|
||||
go-libp2p-${commitSha}: go-libp2p-${commitSha}.zip
|
||||
unzip -o go-libp2p-${commitSha}.zip
|
||||
|
||||
go-libp2p-${commitSha}.zip:
|
||||
wget -O $@ "https://github.com/libp2p/go-libp2p/archive/${commitSha}.zip"
|
||||
|
||||
clean:
|
||||
rm image.json
|
||||
rm go-libp2p-*.zip
|
||||
rm -rf go-libp2p-*
|
@ -1,20 +0,0 @@
|
||||
image_name := go-v0.26
|
||||
commitSha := 8313917571fec7d26813ff437013fde6f48659f7
|
||||
|
||||
all: image.json
|
||||
|
||||
image.json: go-libp2p-${commitSha}
|
||||
cd go-libp2p-${commitSha} && IMAGE_NAME=${image_name} ../../../../dockerBuildWrapper.sh -f test-plans/PingDockerfile .
|
||||
docker image inspect ${image_name} -f "{{.Id}}" | \
|
||||
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
|
||||
|
||||
go-libp2p-${commitSha}: go-libp2p-${commitSha}.zip
|
||||
unzip -o go-libp2p-${commitSha}.zip
|
||||
|
||||
go-libp2p-${commitSha}.zip:
|
||||
wget -O $@ "https://github.com/libp2p/go-libp2p/archive/${commitSha}.zip"
|
||||
|
||||
clean:
|
||||
rm image.json
|
||||
rm go-libp2p-*.zip
|
||||
rm -rf go-libp2p-*
|
@ -1,18 +1,29 @@
|
||||
image_name := go-v0.27
|
||||
commitSha := 2df518f43fa2c3e937b81c249c2c5b898421df6b
|
||||
version := 0.27.9
|
||||
|
||||
all: image.json
|
||||
|
||||
image.json: go-libp2p-${commitSha}
|
||||
cd go-libp2p-${commitSha} && IMAGE_NAME=${image_name} ../../../../dockerBuildWrapper.sh -f test-plans/PingDockerfile .
|
||||
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-${commitSha}: go-libp2p-${commitSha}.zip
|
||||
unzip -o go-libp2p-${commitSha}.zip
|
||||
go-libp2p-${version}: go-libp2p-${version}.zip
|
||||
unzip -o go-libp2p-${version}.zip
|
||||
|
||||
go-libp2p-${commitSha}.zip:
|
||||
wget -O $@ "https://github.com/libp2p/go-libp2p/archive/${commitSha}.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
|
||||
|
1
multidim-interop/impl/go/v0.27/version.lock
Normal file
1
multidim-interop/impl/go/v0.27/version.lock
Normal file
@ -0,0 +1 @@
|
||||
c8791847f0be31a1bc922ce396d77efe62dba491b3a884017662030027304c3d go-libp2p-0.27.9.zip
|
@ -1,18 +1,29 @@
|
||||
image_name := go-v0.28
|
||||
commitSha := 703c3a4377d1ca2cf3fc93c92c883be1644f3ba6
|
||||
version := 0.28.3
|
||||
|
||||
all: image.json
|
||||
|
||||
image.json: go-libp2p-${commitSha}
|
||||
cd go-libp2p-${commitSha} && IMAGE_NAME=${image_name} ../../../../dockerBuildWrapper.sh -f test-plans/PingDockerfile .
|
||||
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-${commitSha}: go-libp2p-${commitSha}.zip
|
||||
unzip -o go-libp2p-${commitSha}.zip
|
||||
go-libp2p-${version}: go-libp2p-${version}.zip
|
||||
unzip -o go-libp2p-${version}.zip
|
||||
|
||||
go-libp2p-${commitSha}.zip:
|
||||
wget -O $@ "https://github.com/libp2p/go-libp2p/archive/${commitSha}.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
|
||||
|
1
multidim-interop/impl/go/v0.28/version.lock
Normal file
1
multidim-interop/impl/go/v0.28/version.lock
Normal file
@ -0,0 +1 @@
|
||||
0f71bbb4d1485a548e50d266ec8a31dbefb9339306c26e8b21691e94782c5075 go-libp2p-0.28.3.zip
|
@ -1,5 +1,5 @@
|
||||
image_name := go-v0.29
|
||||
version := 0.29.0
|
||||
version := 0.29.2
|
||||
|
||||
all: image.json
|
||||
|
||||
|
@ -1 +1 @@
|
||||
473edd5482a9387ab532a46dfc32413aced2119eb47ad8dd7e16fb926ac74d29 go-libp2p-0.29.0.zip
|
||||
3a9233632ee21e95dfcff15d1fb25f23fcc57d6b64398e05bd5a5a6038afa566 go-libp2p-0.29.2.zip
|
||||
|
@ -107,6 +107,12 @@ export const versions: Array<Version> = [
|
||||
secureChannels: ["noise"],
|
||||
muxers: ["mplex", "yamux"],
|
||||
},
|
||||
{
|
||||
id: "go-v0.29",
|
||||
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport"],
|
||||
secureChannels: ["tls", "noise"],
|
||||
muxers: ["mplex", "yamux"],
|
||||
},
|
||||
{
|
||||
id: "go-v0.28",
|
||||
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport"],
|
||||
@ -119,18 +125,6 @@ export const versions: Array<Version> = [
|
||||
secureChannels: ["tls", "noise"],
|
||||
muxers: ["mplex", "yamux"],
|
||||
},
|
||||
{
|
||||
id: "go-v0.26",
|
||||
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport"],
|
||||
secureChannels: ["tls", "noise"],
|
||||
muxers: ["mplex", "yamux"],
|
||||
},
|
||||
{
|
||||
id: "go-v0.25",
|
||||
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport"],
|
||||
secureChannels: ["tls", "noise"],
|
||||
muxers: ["mplex", "yamux"],
|
||||
},
|
||||
{
|
||||
id: "nim-v1.0",
|
||||
transports: ["tcp", "ws"],
|
||||
|
Loading…
x
Reference in New Issue
Block a user