gte/Makefile

12 lines
258 B
Makefile
Raw Normal View History

test:
2021-07-09 07:54:27 +02:00
go test -cover ./...
2021-07-24 08:43:05 +02:00
deploy-service: test
2022-03-05 11:39:43 +01:00
go build -o gte-daemon ./cmd/daemon/service.go
2022-04-01 10:16:35 +02:00
scp gte-daemon blok:/tmp/gte-daemon
ssh -t blok /home/erik/bin/deploy-gte-daemon.sh
2021-07-09 07:54:27 +02:00
2021-07-24 08:43:05 +02:00
install-cli: test
2021-07-09 07:54:27 +02:00
go build -o gte ./cmd/cli/main.go
mv gte ${HOME}/bin