Configure where Continua puts repositories

Hi


where can I configure where continua puts the cloned repositories and in which folder it will run the builds?

Btw what i mean is the location of the CI_WS folder

The Agent Workspace folder is set during the agent install, you can change it during the install. To change it after install, stop the agent service, and edit the Continua.Agent.Service.exe.config file (in the installation folder) :

[code] <add key=“Continua.Builds.AgentWorkspacePath” value=“C:\CI_WS” />[/code]

Note, keep the folder name short, windows has a limit on path lengths (260 chars) and it’s easy to bump into the limit on the agent when checking out source into the build workspace.

Thanks that helped