Reputation: 909
I have a jenkins job that has to run phantomjs on a remote server. (basically test the code on a staging server). How do I do this?
Upvotes: 0
Views: 147
Reputation: 733
Create master slave configuration in jenkins with the remote server as slave ,install phantomjs in the remote server and execute , you may use copy to master or slave plugin if you require to transfer file or use scp . Phantom js often gives proxy errors as there are some issues watch for the correct versions.
Upvotes: 0