Run batch scripts on a remote server (windows) from jenkins

后端 未结 3 2036
自闭症患者
自闭症患者 2020-12-13 09:58

I\'ve got a continuous integration server (Jenkins ) which builds my code (checks for compilation errors) and runs tests and then deploys the files to a remote server (not a

3条回答
  •  一生所求
    2020-12-13 10:31

    I ended up going with a different approach after trying out psexec.exe for a while.

    Psexec.exe and copying files over the network was a bit slow and unstable, especially since the domain I work on has a policy of changing password every months (which broke the build).

    In the end I went with the master/slave approach, which is faster and more stable. Since I don't have to use psexec.exe and don't have to copy files over the network.

提交回复
热议问题