Makefile 556 B

123456789101112131415161718192021
  1. BINARY="build/iot_service"
  2. VERSION=1.0.0
  3. export GOARCH=amd64
  4. export GOOS=linux
  5. SHELL := D:\Programs\Git\bin\bash.exe
  6. clear:
  7. @$(RM) ${BINARY}
  8. build:
  9. @go build -o ${BINARY} ./
  10. push-test:clear build
  11. @$(push_test)
  12. .PHONY: build push-test
  13. define push_test
  14. ssh root@110.40.223.170 "service go-iot_service stop;/usr/bin/rm -rf /opt/lc/iot_svr/iot_service"
  15. scp -r build/* root@110.40.223.170:/opt/lc/iot_svr/
  16. ssh root@110.40.223.170 "chmod +x /opt/lc/iot_svr/iot_service;service go-iot_service start;sleep 3;service go-iot_service status"
  17. endef