From 85db1bb2486b06200956f9266226c139bcd300ad Mon Sep 17 00:00:00 2001 From: Cyrille Nofficial Date: Mon, 3 Feb 2020 19:16:19 +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..9b9cf21 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: test docker + +DOCKER_IMG = cyrilix/robocar-pca9685 + +test: + go test -race -mod vendor ./cmd/rc-pca9685 ./actuator ./part ./util + +docker: + docker buildx build . --platform linux/arm/7,linux/arm64,linux/amd64 -t ${DOCKER_IMG} --push +