Reputation: 6129
TeamCity automatically stores files it believes are build artifacts. All of our artifacts are stored in Octopus Deploy, so this is unnecessary.
How do you configure TeamCity not to store build artifacts?
Upvotes: 1
Views: 1276
Reputation: 6129
TeamCity doesn't store build artifacts by default.
Confirmed by Julia Reshetnikova in a support ticket:
What's happening is that a build step is pushing the artifacts using service messages. Configure the build steps to not push artifacts.
If the build steps do not allow configuring this, then the best thing you can do is configure a clean-up rule to remove build artifacts as fast as possible.
All subprojects under will inherit this configuration. After this is configured, you can force TeamCity to run a cleanup by:
Upvotes: 1
Reputation: 1915
If you do not want to save artifacts, just remove Artifact paths from all projects
One more suggestion. Open Global Settings, sets Maximum build artifact file size to 0 Kb
Also, you can clean all the collected data
go to Administration > Server Administration > Clean-up Settings
The Previous clean-up section of the server clean-up settings enables you to:
During clean-up, TeamCity reports the progress. If you need, you can stop the clean-up process and the remaining data will be removed during the next clean-up.
Just press the button Start clean-up now
Upvotes: 1