7

I have a few Jenkins build jobs for compiling a .NET application using npm, msbuild, and unit test case execution steps.

It shows build success and hangs after exit 0 status, because of that downstream jobs are delayed and failing after long waiting time.

enter image description here

Is it some process blocking or some plugin issue?

PS: I don't want to use build-timeout plugin as the build is already showing success but taking too long to exist from that job.

sanath meti
  • 5,179
  • 1
  • 21
  • 30

1 Answers1

3

I had the same issue and added"-DSoftKillWaitSeconds=0" in jenkins.xml before the -jar option. Now jobs execute normally for me. Link to solution

300hitter
  • 51
  • 4