您好有可能ssh到服务器激活虚拟环境并从我的Jenkins管道项目安装需求
我试过这个,但似乎没有维持我的虚拟环境会话
node {
sh '''
ssh server virtualenv myvenv
ssh server source myvenv/bin/activate && which python "
'''
}
答案 0 :(得分:0)
我找到了你必须像这样运行它的解决方案
ssh server "source myvenv/bin/activate; which python"