gte/Makefile

15 lines
302 B
Makefile
Raw Normal View History

2021-07-09 17:31:13 +02:00
pull:
git pull
test:
2021-07-09 07:54:27 +02:00
go test -cover ./...
2021-07-09 17:31:13 +02:00
deploy-service: pull test
2021-05-15 13:49:10 +02:00
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
2021-07-09 17:31:13 +02:00
install-cli: pull test
2021-07-09 07:54:27 +02:00
go build -o gte ./cmd/cli/main.go
mv gte ${HOME}/bin