Re: I have setup Jenkins and am unable to run some my script, I now have to run some 'winds batch script'.I gave command mvn exec:java -Dexec.mainClass="test.automation.framework.Runner",but i am gett

2018-11-09 Thread RAJENDRA PRASAD
Come again, You want to run wind batch script? Do you mean windows batch script on Jenkins? If that is true , you cannot do that on Unix machine. It looks Jenkins is running on Unix machine. -Rajendra On Fri, 9 Nov, 2018, 20:21 Commit message: "latest changes in schoolmanager class file"

Re: I have setup Jenkins and am unable to run some my script, I now have to run some 'winds batch script'.I gave command mvn exec:java -Dexec.mainClass="test.automation.framework.Runner",but i am gett

2018-11-09 Thread Mark Waite
You're trying to run a Windows batch command on a Linux agent. That won't work. If a Windows batch command is required, then you will need to use an agent on a Windows computer. Pipeline jobs usually control the agent they use based on a label. Freestyle and other jobs do the same. Mark W On