mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-01-16 09:54:37 +00:00
21 lines
644 B
Makefile
21 lines
644 B
Makefile
|
image_name := rust-chromium-v0.53
|
||
|
commitSha := b7914e407da34c99fb76dcc300b3d44b9af97fac
|
||
|
|
||
|
all: image.json
|
||
|
|
||
|
image.json: rust-libp2p-${commitSha}
|
||
|
cd rust-libp2p-${commitSha} && IMAGE_NAME=${image_name} ../../../../dockerBuildWrapper.sh -f interop-tests/Dockerfile.chromium .
|
||
|
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-*
|