Questions tagged [build-pipeline]

161 questions
0
votes
2 answers

How do I get the code reviewer(s) of a build in Azure DevOps pipeline?

Given a build id, how do I get the code reviewer(s) name in azure DevOps pipeline? Assume, the build was off of a master branch - which devs merge their feature branch after code has been reviewed in a pull request. This is the policy and no one…
0
votes
1 answer

Need help. Getting error while restoring NuGet Packages

I have a Azure DevOps Pipeline which is trying to Restore NuGet Packages to one of my Project. It is failing with below error. I'm unable to resolve it and move further. ##[error]The nuget command failed with exit code(1) and…
Vinny
  • 461
  • 1
  • 5
  • 18
0
votes
1 answer

Which repository format shall I use with Sonatype Nexus for ungeneric build outputs?

Use case I have a C++ build pipeline that creates my application. The output of this pipeline is a directory which contains my C++ application. I didn't know where to put them, so I installed Sonatype Nexus in order to categorize, and manage these…
0
votes
1 answer

.net core unit test project failing to build in Azure Devops pipeline

In my solution I have project targetting .netstandard 2.0, as we cannot have test case project targeting the same platform, I am using .netcore 3.1 unit test project, even after I updated the build pipeline to use .net 3.1, I am facing below issue…
Pritam
  • 1,288
  • 5
  • 23
  • 40
0
votes
2 answers

Azure Devops build pipeline doesn't build executables

I setup an azure build pipeline with the following Yaml This project is a simple hello world console application, written in c# .net core 3.1 When I build or publish this project locally I get the following output: 146 appsettings.deploy.json 186…
bluedot
  • 628
  • 8
  • 24
0
votes
1 answer

How to setup priorities between pipelines that might be triggered simultaneously on Azure DevOps pipelines

I am using Azure devOps to build and deploy my application, and within that application I have a project that is being used by other related applications (let's call it project N). Thus I decided to deploy this project as a NuGet package, and…
ccoutinho
  • 3,308
  • 5
  • 39
  • 47
0
votes
1 answer

DevOps build-pipeline overview & sound trigger on fail

I want to setup a monitor were my development team can see the current status of our build-pipelines. When a build-pipeline fails, I want to trigger a sound. I don’t know if it is even possible in Azure DevOps but that’s why I’m asking it…
0
votes
3 answers

What is the concept of concurrent pipelines (One parallel job in Azure Pipeline lets you run a single build or release job at any given time)?

I am reading about Concurrent pipelines in azure. Concurrent pipelines You can run concurrent pipelines (also called parallel jobs) in Azure Pipelines. One parallel job in Azure Pipeline lets you run a single build or release job at any given…
variable
  • 8,262
  • 9
  • 95
  • 215
0
votes
1 answer

Added agentless job to our release pipeline but it fails

Added agent less job to our release pipeline but it fails , Please advice error: 2020-02-11T19:31:58.7824352Z ##[error]Build with ID 321656 not found for build pipeline ID 241 failure
0
votes
1 answer

Queue Time Variable Settings Are Not Overwriting Default Expression

I'm attempting to create a new build pipeline which will run nearly identical steps for a release branch and the master branch. I also want to allow overriding the pipeline's build style (release vs master branch) using the queue time…
Stevoni
  • 341
  • 7
  • 18
0
votes
1 answer

Custom counter can not be set at queue time in Azure DevOps Build Pipelines

I have set a variable with the value of a custom counter: $[counter('myCounter', 0)] I use this value to set the Build number format in the options tab: v$(major).$(minor).$(myCounterVariable) The first time I run it, it works fine, the value is 0…
thatOneGuy
  • 9,977
  • 7
  • 48
  • 90
0
votes
1 answer

Azure DevOps using output variable of deployment id from AWS CodeDeploy as input to next task in pipeline, not converting variable to actual value

I have a build pipeline to deploy something to AWS via Azure Devops pipeline using the AWS CodeDeploy task. I want to report on the detail of this deployment by using the output variable of deployment Id from the AWS CodeDeploy task step as an input…
JamesMatson
  • 2,522
  • 2
  • 37
  • 86
0
votes
1 answer

Couldn't build release version of iOS project with hosted mac agent Azure pipeline

Getting these two errors when I try to build the iOS project with hosted mac agent. lipo : error : unable to find utility "lipo", not a developer tool or in PATH [/Users/runner/runners/2.158.0/work/1/s/src/LOT/iOS/LOT.iOS.csproj] MTOUCH : error…
0
votes
1 answer

Issue setting up azure devops build pipeline for android project

I am trying to setup build pipeline in azure devops for my android application. I am trying to trigger build with a basic auto generated yml file. The pipeline remains stuck at "agent connecting" for a while and then build fails with error…
0
votes
1 answer

Error : Internal Compiler Error when building UWP mobile app in azure dev-ops (release mode)

I get the following error when I build the UWP project in release mode through dev-ops build pipelines. The error states "Error : Internal Compiler Error" without giving a reason. When I build it in release mode locally using VS 2017 and VS 2019, it…
1 2 3
10
11