We are writing a new plugin for Jenkins and one of the requirement involves uploading generated files to perforce. I am able to submit to perforce if my files reside on the master but not if they reside on the slave agent(Jenkins node). Error : File not found. We did try using FilePath. We have a doubt that this is because the client is being created from the master. Here is the code:
IOptionsServer srvr = ServerFactory.getOptionsServer("p4java://" + Port, null);
srvr.connect();
srvr.setUserName(User);
srvr.login(Password);
IClient client = new Client(srvr);
client.setName(tmpClientName);
client.setRoot(source.getRemote());
client.setOwnerName(p4User);
client.setServer(srvr);
client.setStream("StreamName");
ClientView mapping = new ClientView();
mapping.addEntry(new ClientView.ClientViewMapping(0,destination, "//" + tmpClientName + "/" + source.getName()));
client.setClientView(mapping);
try{
srvr.createClient(client);
srvr.setCurrentClient(client);
}
Can anyone help with how to create client from node? or any other insights?