Re: Using HTTP Request plugin to remote control an IDE

2016-08-30 Thread Amaury Laurent
For information, this is the architecture I'm working on. The main problem was to make LabVIEW and Jenkins talk to each other...

Re: Using HTTP Request plugin to remote control an IDE

2016-08-23 Thread Amaury Laurent
Hi, I'm trying to implement your suggestion. Pipeline plugin is really awesome! I stil have some exception problems but it looks good! By the way, I plan to make a small diagram to explain my project and its architecture. Thank you for your help. Regards, Amaury. Le vendredi 12 août 2016

Re: Using HTTP Request plugin to remote control an IDE

2016-08-12 Thread Martin d'Anjou
Sounds like you need to implement a couple of polling loops (a loop to wait for the builder, a loop to query the status). I would do that in the Pipeline DSL. That would be easier than modifying the plugin. For example: def response = httpRequest 'http://localhost:8080/' while (response.status

Using HTTP Request plugin to remote control an IDE

2016-08-12 Thread Amaury Laurent
Hi everyone, I'm interested in using HTTP Request Plugin to remotely control our development environment. My objectives are: 1-Waiting for my builder to start (maybe in Build Environment section of Jenkins) 2-Trigger a build remotely 3-Periodically query its status 4-Retrieve build results