Jenkins jobs on slave servers -
i have many jenkins jobs need run on every build,
at present time have 4 slave servers.
i jobs run in parallel as possible, hence defined jobs follow:
- execute concurrent builds if necessary - disabled
- restrict project can run - enabled following values salvelinux1ht||salvelinux2ht||salvelinux3ht||salvelinux4ht
to understanding if job , b triggered @ same time, 1 should use 1ht , other should use 2ht , can run in parallel
however jenkins build job on 4 slaves , after it's finished build job b on 4 slaves
this opposite of goal
any ideas?
thanks in advance
you can use
you can find both installation , configuration instructions of plugin @ above mentioned link.
if want run jobs in parallel can use following scripts:
parallel ( // job , b scheduled in parallel. { build("joba") }, { build("jobb") } ) // jobc triggered after jobs , b completed build("jobc")
Comments
Post a Comment