robocar-throttle/Makefile

11 lines
203 B
Makefile
Raw Permalink Normal View History

2020-03-01 18:46:23 +00:00
.PHONY: test docker
DOCKER_IMG = cyrilix/robocar-throttle
test:
go test -race -mod vendor ./...
docker:
docker buildx build . --platform linux/arm/7,linux/arm64,linux/amd64 -t ${DOCKER_IMG} --push