Reputation: 24899
I am running TeamCity 8.0.3 with 1 build plan that also includes MSTest builder.
the build server does not run a build agent, so the build artifacts are created on developer machines which are serving as build agents. or so i thought..
looking at the build server, under \ProgramData\JetBrains\TeamCity\system\artifacts\Team\MyBuild#\MStest i see 37 folders each with a separate set of assemblies, which is interesting because there are only 25 unit tests.
i have 3 build steps
MSBuild Build file: src/mySolution.sln Targets: default
Create Artifacts Dir Command Line Custom script: if not exist Artifacts\MSTest mkdir
^^ creates artifacts dir on build agent
MSTest
^^ includes Permal.BSG.Manager.UnitTests.dll and runs ms test 2012 on build agent..
as far as i know it should all happen on build agent. not sure why the server is hoarding all those copies of assemblies??
Upvotes: 1
Views: 1142
Reputation: 4229
I'm a little bit confused by your question, but I'll try to provide a few answers:
Upvotes: 1