Hudson - seizing magazines from slaves

I have configured MASTER and SLAVE (ssh-slave-plugin).

I would like to display the output of a subordinate subordinate script on a job on master, since so far I am getting

Building remotely on SubAgent Triggering SubAgent Triggering a new build of XXXX #126 Finished: SUCCESS 

and it's all. Thus, all performance is hidden.

Is there any way to do this?

+6
source share
2 answers

I use the same master-slave (ssh) configuration in Hudson and all the logs are visible on the Hudson interface.
There may be a few things you can check:

  • What tool do you use to build (e.g. ANT, MAVEN ...). Check execution if logs are created at all
  • Check Console Out [raw]
  • Hudson Management> Node Management> Select Slave> Configure
    • Assure that "Remote FS root" is mentioned.
    • Check startup method . I connect to my subordinates via jnlp (I believe this may be the key)

Hurrah!!

+5
source

Go to the nodes, select node (or hover over the name) and select "Build History". There will be logs of a log running on a slave node.

0
source

Source: https://habr.com/ru/post/891632/


All Articles