使用Goland远端调试时自动拉起服务端
动机
在使用Goland+dlv远程调试服务时,需要在服务器执行dlv程序,等待本地Goland连入。希望在使用Goland Debug时自动把server拉起来。 ### 方法
直接在Goland的Run/Debug Configuration为调试任务设置前置任务,即执行脚本:
1
2
3
4//bootstrap.sh
ssh username@host << eeooff
# code: bootstrap dlv in server
eeooff这样的话,调试任务会等待
bootstrap.sh
执行完毕,然而该脚本本身就会监听调试端口,等待调试任务连入,形成死锁。增加一个
entry.sh
作为前置任务:1
2open -a Terminal.app bootstrap.sh #in macOS
sleep 1 # wait for bootstrap to get ready
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Do not touch fish!!