Add go-libp2p v0.29.0 (#234)

This commit is contained in:
Marco Munizaga 2023-07-19 09:37:06 -07:00 committed by GitHub
parent 3132bf12b3
commit 8834ac1555
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,32 @@
image_name := go-v0.29
version := 0.29.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-*

View File

@ -0,0 +1 @@
473edd5482a9387ab532a46dfc32413aced2119eb47ad8dd7e16fb926ac74d29 go-libp2p-0.29.0.zip