Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.
If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!
BuildMaster fails to return TeamCity build configs
-
We're attempting to setup Buildmaster to have it serve as a deployment and test arm of our builds based on build artifacts.
The connection to TC seems to work. We do get the list of projects from the server.

BM also says that TC has been synchronized.

But when we go to import builds so we can see the artifacts, the dropdown never populates.

What API calls are you using that is supposed to return that info?
TeamCity version is TeamCity Professional 2025.11 Build 207946
and BuildMaster is version Version 2025.5 (Build 14).We're kind of at a standstill until we can get the artifacts list.
-
Hi @kquinn_2909 ,
The "Recent TeamCity Builds" page should show a list of builds in the selected TeamCity project; it's a bit tricky to troubleshoot, but BuildMaster is essentially querying for builds using this locator string:
defaultFilter:false,project:{Uri.EscapeDataString(project)}&fields=build(id,number,status,state,webUrl,startDate,buildTypeId)Might be easier to see in the source code:
https://github.com/Inedo/inedox-teamcity/blob/master/TeamCity/InedoExtension/TeamCityClient.cs#L63I believe the Project ID is being used, which in your case would be
WebProjects_Replicator. I think the name would be "WebProjects Replicator". Though I'm not totally sure.What builds do you see on the TeamCity side of things?
Thanks,
Alana