From b9123ce18f7416f88fcba5732f5c224342af4bad Mon Sep 17 00:00:00 2001 From: Cyrille Nofficial Date: Tue, 28 Jan 2020 23:31:54 +0100 Subject: [PATCH] Add makefile --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..10260d8 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: test docker + +DOCKER_IMG = cyrilix/robocar-led + +test: + go test -race -mod vendor ./cmd/rc-led ./part ./led + +docker: + docker buildx build . --platform linux/arm/7,linux/arm64,linux/amd64 -t ${DOCKER_IMG} --push +