mirror of
https://github.com/libp2p/go-libp2p.git
synced 2025-09-26 20:21:26 +08:00

* Test interop on changes * Add pull request event * Nits * Rm un-needed default * Use build tag * Point to master for interop-test * Point to master for interop-test * Go mod tidy
10 lines
229 B
Makefile
10 lines
229 B
Makefile
all: ping-image.tar
|
|
|
|
ping-image.tar: PingDockerfile go.mod go.sum cmd/ping/
|
|
cd .. && docker build -t go-libp2p-head -f test-plans/PingDockerfile .
|
|
docker image save -o $@ go-libp2p-head
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm ping-image.tar
|