doskey support in "Execute Windows batch command" option.

2015-04-10 Thread Ankit Singhal
Hi All We have build script which sets a doskey for certain commands. Jenkins somehow is not able to recognize doskey: Problem is easily reproducible, *Script: foo.bat* doskey d=dir === *Jenkins : Execute Windows batch command* ^

unarchive step documentation

2015-04-10 Thread ELIASSAL
Hi, can you please point me to any doc related to using the unarchive step Thanks -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@g

[workflow-plugin] -- dynamically select specifc slave nodes in for loop

2015-04-10 Thread Anshu Arya
I want to use a list of nodes to launch a command on specific nodes, so I tried this: for (node_name in all_nodes) { node(node_name) { echo 'My name is ' + node_name } } This works for the first node in "all_nodes" but then fails after that. Is there a better way to do this? -