Hudson performs only one task, not parallel

We have a hudson setup with only one performer. we want to get to the point where we can have at least 2 performers. The problem that prevents us from doing this is work that cannot be performed in parallel.

Explanation: we have many svn branches configured on hudson. The thread for a particular branch will look like

A->B->C

In this thread, B writes and deletes data from oracle. we are good if there is only one branch on hudson.

But we have many svn branches on Hazon. So there may be another branch with a thread

A1->B1-C1

Now B and B1 write and delete data from only the oracle instance running in the hudson window, so we are careful about any data that gets messy that will be used in the tests. Therefore, we do not want to have two artists for hudson, which can lead to the simultaneous launch of B and B1.

So is there a solution to this problem? Can I configure Hudson to not run B and B1 in parallel, otherwise do two tasks in parallel?

Thanks at Advance

+3
source share
2 answers

, . SlaveA, SlaveB SlaveC. ( hudson) .

, A, A1, A2.., SlaveA, .

+1

. , .

0

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


All Articles