Files
robocar-steering/Makefile
T
2020-02-08 22:39:18 +01:00

11 lines
222 B
Makefile

.PHONY: test docker
DOCKER_IMG = cyrilix/robocar-steering
test:
go test -race -mod vendor ./cmd/rc-steering ./part
docker:
docker buildx build . --platform linux/arm/7,linux/arm64,linux/amd64 -t ${DOCKER_IMG} --push