java - Hudson executing just one job non-parallel -
we have hudson setup 1 executor. want point can have @ least 2 executors. problem stopping doing job cannot run in parallel.
explanation: have many svn branches configured on hudson. flow particular branch like
a->b->c
in flow, b writes , deletes data oracle. good, if there 1 branch set on hudson.
but, have many svn branches on hudson. there branch flow
a1->b1-c1
now b , b1 both write , delete data only oracle instance running on hudson box, cautious data getting messed up, used tests . don't want have 2 executors hudson, lead b , b1 running @ same time.
so there solution problem? can configure hudson, not run b , b1 in parallel, otherwise run 2 jobs in parallel?
thanks in advance
what can create slave each different project. can call them slavea, slaveb , slavec. have them launch on same server (main hudson server) single executor.
now each branch have a,a1,a2.. can have them build on slavea forces thread confinement between each project.
Comments
Post a Comment