1
votes

How can you make TeamCity to run svn export instead of svn checkout? At the build configuration you have VCS checkout mode with the options:

  • Prefer to checkout files on agent (recommended)
  • Always checkout files on server
  • Always checkout files on agent
  • Do not checkout files automatically

But nothing seem to fit.

I'm asking because the duration of svn checkout is way longer than svn export.

1

1 Answers

2
votes

Server-side checkout could be considered a rough equivalent of svn export, as .svn directories are not created in this case.

Another thing you may want to consider - using a native svn checkout, please read more in this issue: https://youtrack.jetbrains.com/issue/TW-51254

Regards,