How can a Build Pipeline be scheduled/triggered?

2015-08-15 Thread Horton, Anne B
Jenkins users, Has anyone tackled this? For example, there are 5 build pipelines - each independent of each other and the idea is to start these jobs during the night with the status of upstream jobs passed to downstream jobs. Ideas? -- You received this message because you are subscribed to

Re: Moving a job to a Folder

2015-08-15 Thread Stephen Connolly
On Saturday, August 15, 2015, Vanetta Floyd wrote: > Please accept my apologies for misunderstanding the answer you provided, > > No worries, it may have been less than entirely clear due to being composed on a phone > as well as the purpose of this board. > To be clear, this mailing list is

Re: Moving a job to a Folder

2015-08-15 Thread Vanetta Floyd
Please accept my apologies for misunderstanding the answer you provided, as well as the purpose of this board. On Aug 14, 2015 3:00 PM, "Stephen Connolly" wrote: > You could use a groovy script. Other than that you are SOoL > > For CloudBees Jenkins Platform I have just implemented move/copy > fu

Re: [workflow-plugin] Clean workspace

2015-08-15 Thread Thomas Gimpel
This does not work on a Windows node. One has to use a batch script like this rmdir /s /q %cd% 2>null& exit /b 0 Unfortunately jenkins seems to put that batch script itself into the workspace folder (besides some log files). Thus executing the mentioned batch file deletes that file itself and th