如题,在创建 pipeline 任务的时候,因为需要部署在远程服务器,所以 jenkinsfile 应该怎么写呢?哪个语法可以连接远程 server?
1
yuikns 2018-11-07 07:46:31 +08:00
我使用的是 ssh publish
sshPublisher( publishers: [ sshPublisherDesc( configName: 'remote-host', transfers: [ sshTransfer( excludes: '', execCommand: ''' # your commands here ''', ) ], verbose: true ) ] ) 当然我也不太确信是不是 best practice |