rvshetty
rvshetty

Reputation: 85

Hudson / Jenkins - transfer files from linux to windows

We have hudson installed on linux server. We have created jobs to checkout source files from SVN and build respective jars/wars (which is placed at a location on the linux server called "BuildArea").

We have another location called "ReleaseArea" on a windows server where we keep the build artifacts so that it can be used for further activities.

My requirement is to create a Hudson job which will automatically update the ReleaseArea by copying/transferring the files from BuildArea (Linux Server) to ReleaseArea (Windows Server).

NOTE: we have tried it using pscp option from windows server but we are not able to use that through a hudson job as hudson is installed on linux.

We are specifically trying to implement this task via hudson.

Any suggestions/comments or alternative best solution always welcome.

Thanks, Rohan Shetty

Upvotes: 0

Views: 4345

Answers (1)

Suresh
Suresh

Reputation: 750

You can transfer files from Jenkins installed Linux machine to Windows share using Publish Over CIFS Plugin

Upvotes: 1

Related Questions