First implementation

This commit is contained in:
2020-02-08 22:35:47 +01:00
parent f95f9753e0
commit c3dab05c54
417 changed files with 240337 additions and 0 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
.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