Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove Post Job Cleanup step in Team Services?

We've recently downloaded and are hosting an on-premises Visual Studio Team Services build agent for our source code and have noticed that it's doing an extra step in the build process compared to our hosted agent. This extra step is the 'Post Job Cleanup' as seen below:

enter image description here

When setting up this agent locally there was no options for setting this, and looking at our build steps this extra job isn't listed there:

enter image description here

I've checked online guides but there's been no hint as to where this extra step is coming from. Does anyone know where the option is to include/exclude this for builds is?

like image 564
Novastorm Avatar asked Feb 01 '17 11:02

Novastorm


1 Answers

Setting process.clean to false in the variables of the release pipeline stops the "finalize job" step from killing all processes.

Setting variables in the release pipeline

https://developercommunity.visualstudio.com/solutions/498153/view.html

Gradle Daemon being killed in "Finalize Job" step

like image 143
Zosoabi Avatar answered Oct 05 '22 01:10

Zosoabi