mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-02-22 11:38:12 +00:00
* Add backported Rust versions * Update v0.48 to merge backport commit * Reference backport commit * Reference backport commit for v049 --------- Co-authored-by: Thomas Eizinger <thomas@eizinger.io>
21 lines
623 B
Makefile
21 lines
623 B
Makefile
image_name := rust-v0.49
|
|
commitSha := 582c84043050eb0dd6e52d1bd0527175181d41cb
|
|
|
|
all: image.json
|
|
|
|
image.json: rust-libp2p-${commitSha}
|
|
cd rust-libp2p-${commitSha} && IMAGE_NAME=${image_name} ../../../dockerBuildWrapper.sh -f interop-tests/Dockerfile .
|
|
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-*
|