user576700
user576700

Reputation: 610

TeamCity CI - Make custom build output folder

I am trying to make script that is able to copy after successful build only certain files to custom output folder on TeamCity CI server that has been installed on windows 7 OS. Any suggestion on how to do this?

Thank you in advance

Upvotes: 1

Views: 4248

Answers (1)

Nikita Skvortsov
Nikita Skvortsov

Reputation: 4923

  1. Remember that you sources are not built on TeamCity CI server machine - all builds are executed on Build Agents (which can be located on other hosts)
  2. Best practice is to use TeamCity's own artifact publishing feature
  3. Check some solutions described here: http://youtrack.jetbrains.com/issue/TW-1558
  4. Deployer plugin can be useful

Upvotes: 3

Related Questions