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
3
votes
2 answers

TFS Build Service Wizard Failing on 'Edit collection-level information' permission set to Allow

I'm trying to setup a TFS Build service but the config wizard keeps bombing out on Edit collection-level information permissions, which I have set as required. There isn't much background information for this, its a new 2003 virtual sever with…
Tom Riley
  • 1,701
  • 2
  • 21
  • 43
2
votes
2 answers

Team City 7 can't find DLL's in a project

I am trying to get our solution to work with Team City 7. I'm running into problems when Team City builds from the main solution (.sln) file. Once it reaches the project where we keep our unit tests, Team City spits out an error about not finding…
2
votes
3 answers

Team City - Add Gallio test result xml to build display

Im using TeamCity with Gallio/XUnit/Specflow and trying to display our unit/acceptance test results. I believe the output is NUnit xml test result format. Our unit tests auotmatically display using the command runner with Gallio. The acceptance…
Chris McKelt
  • 1,378
  • 2
  • 17
  • 38
2
votes
2 answers

How to provide non-deployed dependencies to a build service?

Some times ago I asked the question about how to integrate an application using dependencies on a build server and I had quite satisfying answers. Today I am facing a different case. For a project I have to use non-redistribuable depedencies (RDL…
Ucodia
  • 7,410
  • 11
  • 47
  • 81
2
votes
2 answers

Building Sharepoint project on 32bit machine

My buildserver is a 32bit system. I heard that to run and develop sharepoint projects I need a 64bit machine. Is it feasible to build a sharepoint project on a 32bit system?
Ole Albers
  • 8,715
  • 10
  • 73
  • 166
2
votes
1 answer

Resources for ready-to-use virtual machines tailored to the needs of developers

I wonder if someone else thinks alike. Often I find myself committing things wondering whether a particular snippet doesn't break the *BSD or gentoo build. Now wouldn't it be handy to fire up a virtual machine (with all the devel tools), test the…
hroptatyr
  • 4,702
  • 1
  • 35
  • 38
2
votes
1 answer

When checking out a repo on Github Actions workflow, how do I pass in a deploy key for a private submodule but not the repo itself?

When checking out a repo on Github Actions workflow, how do I pass in a key for a private submodule but not the repo itself? This is currently how I am doing it: The ACCESS_KEY is the private key of a deploy key which is stored in the main repo.…
2
votes
1 answer

error MSB4019: The imported project "..../WebApplications\Microsoft.WebApplication.targets" was not found

My web API project builds fine from Visual Studio. I was trying to setup the CI in the github workflows using below yml. name: web-api-ci-pipeline on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build-and-test: …
2
votes
3 answers

Azure DevOps Multiple Build pipeline under single Repo Drain the build server memory when using Git

I have more than 20 solutions under single repository. Even I added path filter under the trigger, each build pipeline checkout save entire repository under build agents _work/x/s folder. It is draining the server memory. Anybody could help me in…
Hashim RA
  • 21
  • 1
  • 3
2
votes
2 answers

How to run an ad-hoc clean build in Azure DevOps?

I am new to using Azure DevOps builds/pipelines, as the source code for the solutions I need to build are in TFVC I am limited to using the Classic (i.e. UI) builds rather than YAML. When I want to test changes to a build definition I sometimes want…
Techromancer
  • 431
  • 4
  • 15
2
votes
1 answer

Move intermediate files of Visual Studio C++ build to another machine

We are looking for a way to speed up our local C++ builds. We have a simple idea in mind. We build our solution regularly on a build server. This build is incremental: when we push new changes, only necessary part of solution is rebuilt. Fast,…
Mikhail
  • 20,685
  • 7
  • 70
  • 146
2
votes
0 answers

TFS iterating over all git branches when using Gitversiontask

I have a Visual Studio solution that contains 48 C# projects. Now, that I automatically want to version all projects, I just added the Nuget Package for GitVersionTask to all projects (Version 4.0.0-beta0012). When I build the solution locally,…
Paul H
  • 600
  • 1
  • 5
  • 13
2
votes
2 answers

VS2015/TFS2013 build server problems

TFS2013 update 5, with VS2015 Enterprise update 3 on the dev PC and also the build server (per What is required for doing Unit Tests on a Build Server?). Project is a standard MVC5 framework with next to no modifications made as of yet. The project…
Alan
  • 1,587
  • 3
  • 23
  • 43
2
votes
0 answers

Unable to access installed certificate on Build Server using C# code

Unable to access Certificate using C# code. The Certificate has been installed on Build Server. I am accessing the certificate using below code which doesn't work in my case: public static X509Certificate2 FindCertificateByThumbprint(string…
Amruta
  • 701
  • 4
  • 15
  • 38
2
votes
1 answer

error MSB4018: The "SignFile" task failed unexpectedly on build server

I have a clickonce solution that works on several developer machines with VS 2015 installed. However, it doesn't work on our buildserver it comes with this signFile error. I have installed Build Tools 2015 update 3 .Net 4.6.2 SDK Windows Software…
dennis_ler
  • 659
  • 1
  • 9
  • 36