Questions tagged [build-server]

Build sever is interchangeably used for the machine that is used to compile the application code at a scheduled time and the CI Tools such as Cruise Control, Teamcity etc.

Build server is typically used for the machine used to compile the source code at a scheduled time. This is different from the developer's machine since this is a controlled environment and is only supposed to have the pre-requisites required for compilation.

With the evolution of Continuous Integration, Build Server is also interchangeably used for the CI Applications such as Teamcity, Cruise Control, Jenkins or Bamboo. These applications take care of executing the builds and also a number of other activities such as unit test execution, deployment, various other quality checks on the code and report them in a nice presentable manner.

234 questions
16
votes
6 answers

VisualStudio.com can't load the temporary UWP certificate during builds

I set up my Visual Studio Team Service account to clone my private GitHub repo and build the Windows UWP application anytime I queue a build. The cloning works without any issues; the compilation of every project (6) works except one. The Windows…
16
votes
5 answers

SVN: Release branch and externals?

We have two websites for the same client (main www site and another for the ecommerce site which sits on a seperate server) that use shared portion of code (various features/styles/javascript etc.). We currently manage this by having the shared code…
Pete Duncanson
  • 3,208
  • 2
  • 25
  • 35
14
votes
3 answers

Missing include for .NetStandard project when building on build server

I'm currently trying out VS2017 at work, due to an interest in migrating our server systems to .Net core. I have switched a couple of minor tools projects to target .NetStandard 1.2 (recreate and move files), and everything builds locally. However,…
Anders
  • 1,590
  • 1
  • 20
  • 37
14
votes
3 answers

Configuring a TFS2015 build agent fails because agent pool not found. Why?

When configuring a build agent with the use of a PowerShell script, provided by an on-site TFS2015, the script errors out because it cannot find the agent pool on the server. However, the agent pool 'default' definitely exists. On another server the…
RoelF
  • 7,483
  • 5
  • 44
  • 67
13
votes
3 answers

How to run .NET 4 code analysis on build server

On a Windows Server 2003 R2 with .NET 4 SDK but without Visual Studio 2010, I have tried building a Visual Studio 2010 solution with msbuild MySolution.sln /p:RunCodeAnalysis=true but that fails. What is required to run code analysis on such an…
Ole Lynge
  • 4,457
  • 8
  • 43
  • 57
12
votes
3 answers

Where is MsDeployPublish located?

When trying to deploy my site using TeamCity and Web Deploy I get this error: error MSB4057: The target "MsDeployPublish" does not exist in the project. Is there something I have to install on a build server? It's a clean Windows Server 2012 with…
Kulvis
  • 655
  • 11
  • 33
12
votes
6 answers

TFS build-server build of branch?

We have a TFS 2008 project with two branches ("Main" and "NewFeature"). Each is a complete, independent "copy" (variant) of the source code. By changing the workspace mappings, we can map either variant onto our local PCs and have been working with…
Jason Williams
  • 56,972
  • 11
  • 108
  • 137
11
votes
3 answers

Using NuGet with *.dll.refresh files in ASP.NET "Web Site" projects with Web Deployment Projects

If you have an ASP.NET Web Site project type (the one without a proper .csproj or .vpproj project file and that is just a folder of loose files), then when you add a package with NuGet, it makes a *.dll.refresh file in the Bin directory to reference…
Derek Morrison
  • 5,456
  • 4
  • 31
  • 24
11
votes
1 answer

How do we authenticate against a secured NuGet server with Cake build?

We are working on automating our builds using Cake Build and we use NuGet packages from nuget.org but we also have our own NuGet Feed server which has a username/password authentication to access. How do we utilize Cake Build with a custom NuGet…
Ensunder
  • 283
  • 1
  • 3
  • 8
10
votes
4 answers

Xcode 7 UI Tests fail with "Timed out waiting for key event to complete"

My team and I have been setting up a Jenkins server to automate running unit and ui tests on a Mac Mini that we use as a build server. This Mac Mini has no peripherals attached to it, and the only way we can access it is by logging in remotely.…
9
votes
3 answers

Windows Service user account trouble for TFSBuildServiceHost.exe

Experienced a very strange problem today on our TFS2010 build server. Suddenly the build service failed for no apparent reason. We´re been trouble shooting it all day, but still haven´t found the reason yet. One of the problems is that the build…
jaspernygaard
  • 3,098
  • 5
  • 35
  • 52
9
votes
2 answers

What is the minimal agent install footprint for Delphi build automation?

When creating a build server that does clean version control check-outs and full system builds of everything in a given source repository or project, what is the minimum required Delphi install footprint for XE3 Win32/Win64 projects? (Core system -…
Darian Miller
  • 7,808
  • 3
  • 43
  • 62
8
votes
5 answers

Poll: Build Server in a Virtual Machine?

Is it better to have a Build Server in a virtual machine? Do the benefits of having a build server in a VM outweigh the costs?
Adam Tegen
  • 25,378
  • 33
  • 125
  • 153
8
votes
3 answers

Exit code 100 returned from process - error when getting source from TFS

We're intermittently getting this error when fetching source from TFS: 2017-03-23T23:49:31.0591599Z ##[section]Starting: Build solution [SOLUTION-NAME].sln 2017-03-23T23:49:31.0591599Z…
Quality Catalyst
  • 6,531
  • 8
  • 38
  • 62
8
votes
2 answers

Concourse with Windows Containers

I try to setup a concourse build server (http://concourse-ci.org/) that supports as many languages/platforms as possible. I've read that beginning with Windows Server 2016 it will be possible to have Windows as containers. As concourse writes on its…
1
2
3
15 16