gte/Makefile

12 lines
275 B
Makefile
Raw Normal View History

test:
2021-07-09 07:54:27 +02:00
go test -cover ./...
2021-05-15 13:49:10 +02:00
deploy-service: test
go build -o gte-daemon ./cmd/daemon/service.go
2021-05-15 14:10:56 +02:00
scp gte-daemon ewintr.nl:/home/erik/bin/gte-daemon
ssh ewintr.nl /home/erik/bin/deploy-gte-daemon.sh
2021-07-09 07:54:27 +02:00
install-cli: test
go build -o gte ./cmd/cli/main.go
mv gte ${HOME}/bin