I've setup build configuration in TeamCity with 3 steps:

  • Build solution
  • Do unit tests
  • Upload artifacts to FTP

For FTP uploading I've used FTPUpload plugin, taken from http://teamcityrunners.codeplex.com/. Folder to upload was set to absolute path:

D:\Documents and Settings\rpeshkov\.BuildServer\system\artifacts\ %env.TEAMCITY_PROJECT_NAME%\%env.TEAMCITY_BUILDCONF_NAME%\%env.BUILD_NUMBER%

According to build log, artifacts publishing take place only after all steps have been completed.

Is it possible to configure TeamCity to publish artifacts after certain build step?

link|improve this question

40% accept rate
feedback

2 Answers

If your aim is to upload artifacts to TeamCity server you do not need any external plugins, just fill in "Artifact paths" on the General Settings for the build configuration. Likewise, you can publish artifacts during the build via printing specially-formatted text into standard output, a "service message"

You will need the plugin mentioned only if you want to upload to some FTP, not related to TeamCity.

link|improve this answer
Yeah, I know about this setting. Thank you. But the main task is to upload artifacts to server, not related to TeamCity. – black_wizard Feb 23 at 18:42
feedback

We do something similar for one of my projects. We use 2 build configurations.

The first one builds the solution, runs unit tests and produces the artifacts.

The second build is set up with an Artifact Dependency on the last successful build. That means the second build will start out grabbing the artifacts from the first build. The second build would have a build step that uploads to the ftp site. The second build is setup with a Finish Build Trigger pointing to the first build. That will make it kick off whenever the first build finishes.

It's a bit more work this way, but once you have it setup it works pretty well.

link|improve this answer
Thanks! That's great idea. But, is it possible to do full cycle (build, test and deploy) in a single build configuration? It's more the question of self-sufficiency of build configuration. One build configuration for one project. – black_wizard Feb 25 at 12:29
@black_wizard you could add a build step that puts the artifacts in one folder using Ant or whatever. then Ftp from there and then point the teamcity artifacts step at that folder. Other than these two ways I don't know how to do it. I agree that it makes sense and you should be able to do it. You could make it a feature request for the next version. If you do that let me know and I'll vote for it. – Mike Two Feb 25 at 15:42
Hm, looks like this feature request is something I'm looking for. – black_wizard Feb 25 at 20:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.