mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-02-23 20:18:19 +00:00
* add Nabu (Java) to interop tests * naming fix * missed a reference * update build commit * update build commit * update git hash * add to gitignore
15 lines
470 B
Makefile
15 lines
470 B
Makefile
image_name := java-v0.0.1
|
|
commitSha := 89f724c4ca07eb4fc704176f91ad1f390b388cdb
|
|
|
|
all: image.json
|
|
|
|
image.json:
|
|
wget -O java-libp2p-${commitSha}.zip "https://github.com/Peergos/nabu/archive/${commitSha}.zip"
|
|
unzip -o java-libp2p-${commitSha}.zip
|
|
cd nabu-${commitSha} && docker build -t ${image_name} -f Dockerfile .
|
|
docker image inspect ${image_name} -f "{{.Id}}" | \
|
|
xargs -I {} echo "{\"imageID\": \"{}\"}" > $@
|
|
|
|
clean:
|
|
rm -rf image.json java-libp2p-*.zip nabu-*
|