You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm running unit tests after the application is built. They can hang up, so I need to kill the process and fail the build after certain timeout.
I've written a batch file that handles it by using Windows "timeout", "tasklist" and "taskkill" commands. The question is, if two builds are launched simultaneously, is there a chance that one of them would kill the process from another build? And how about "tasklist" command, do separate builds have separate task lists?
Hi @Victor_Rulev,
Welcome to the Community!
To answer your question directly, yes you can accidentally kill processes of another build if you aren't careful.
I haven't done what you are doing in a batch file, but we spawn a number of background jobs using Powershell for our builds and we are careful to give them specific naming conventions so that if we kill a job do to a timeout threshold being passed, we know that the job being terminated belongs to the build that spawned it.
I hope that help!
-Jimmy
Hey @Victor_Rulev ,
If your intention is to identify and kill a hung build, how about configuring build monitoring that kills hung builds running in your remote agent?
Cheers, Jey
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't have access to that and I need a more "localized" solution. Besides, hung tests could be detected within 10 minutes, while timeout for a hung build could be a few hours.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.