Questions tagged [build-pipeline]

161 questions
0
votes
1 answer

Copy config file from nuget package to application folder

Given: a) .net core library that contains .json configuration file (not appsettings.json) that is built by azure pipeline and packaged into internal nuget package. b) .net core application that uses package #a Problem: copy .json configuration file…
Dmytro Kosh
  • 53
  • 1
  • 7
0
votes
1 answer

How to trigger a build from another build pipeline in azure devops

I have two build pipeline for two different projects.One is for building the actual project and another build pipeline for test automation. I want to automatically trigger the build pipeline of test automation once the actual project build…
Thomas
  • 35
  • 2
  • 8
0
votes
1 answer

Want to read xml file from published artifacts in azure devops build pipeline

I am using the azure-DevOps build pipeline to run & publish the postman Newman report as pipeline artifacts. my pipeline does publish pipeline artifacts (HTML-reports of postman and also gives Newman report in XML files). My requirement is that…
Sanjesh M
  • 341
  • 2
  • 6
  • 22
0
votes
1 answer

Consume build artifact in the build pipeline itself (CI)

is there a way that we can Consume build artifact that is generated in the CI pipeline in the subsequent task of CI pipeline ( I want to refer the artifact path in the Azure File Copy task AND in the PowerShell task).
0
votes
2 answers

Send the Build status of an Azure DevOps Server pipeline via REST to Bitbucket

I'm trying to send the status of a build pipeline to Bitbucket Server after the build is successful/failed. With Postman, I'm able to successfully update the build status of a commit with the REST API: POST…
0
votes
1 answer

Any way to cache signed binaries and pull them during Azure Build Pipeline run?

We have an Azure Build Pipeline that is building our product. We recently migrated to a custom Agent Pool, so we now have control over the VMs in the pool. I recently added a code signing step. This step is signing all of the binaries, and is…
John
  • 239
  • 4
  • 12
0
votes
1 answer

How to Reject a commit in git with failed build

We have a git repo in AzureDevop with 300+ contributors and I was wondering if we can reject the commit to master if the build would fail on completing the PR. On absence of this solution, when one PR merge build fails, there's a risk that other…
Afflatus
  • 933
  • 1
  • 12
  • 39
0
votes
1 answer

Copy file from NuGet package to OutDir in a project not working on Azure DevOps

I have an issue on Azure DevOps only! It works fine in Visual Studio 2019, when I right click and Build. It also works fine if I use dotnet build from a CMD, locally. Nuget package looks like this: csproj
user10285265
0
votes
0 answers

Azure build agent and xamarin.android build

i have a vm on which i installed the lastest version of microsoft visual studio (16.7.3). this machine is intended to be used as a build-agent for azure devops pipelines. i tried the following. opened visual studio, download and open the project…
Keek
  • 1
0
votes
1 answer

How to create a change set from build pipeline in Azure DevOps to push some file into my repository

I have my code repo on TFS server on azure DevOps. In my CI part of this application, I perform some operation, and after that one file is generated let say it is some kind of log file or report created from its existing version in the repository…
Mukeem Ahmed
  • 93
  • 1
  • 2
  • 11
0
votes
2 answers

Azure CD pipeline can't find build artifacts

Below is Azure error log from the Azure release pipeline. 2020-07-24T05:17:13.7712974Z ##[section]Starting: Deploy Azure App Service 2020-07-24T05:17:14.0464143Z…
0
votes
1 answer

How to validate empty field in azure task in build pipeline using powershell

I'm creating new VSTS/TFS extension in azure build pipeline. In that extension one field accepts a file path and it is optional field. In powershell script, i want to validate the field, if no input is provided then i have to ignore, otherwise i…
0
votes
1 answer

Trigger a specific project inside a repository when creating a build in Azure build pipeline

I have one repository with 3 branches dev, test and prod. I have a Visual Studio solution with 3 projects in it. One Angular, a worker service and ASP.NET web api project. So that whole solution in one repository. I have pushed everything to dev…
Sandeep Thomas
  • 4,303
  • 14
  • 61
  • 132
0
votes
1 answer

Azure build pipeline started failing suddenly (current version of the following service is not supported: GitOdb)

The error message i'm getting is "current version of the following service is not supported: GitOdb". Build pipeline is for ASP.NET CORE(v3) API project. When i click on the error it says "Build not found"
Arshath Shameer
  • 453
  • 4
  • 15
0
votes
0 answers

Example pipeline task for automated ui-tests with xamarin in appcenter, triggered from Azure DevOps

I want to run our automated ui tests from xamarin ui-tests in appcenter. But i don't want to start the test runs manually, but rather being triggerd by my Azure DevOps build pipelin. I already found the task for this, but unfortunately the…
Maverick1st
  • 3,774
  • 2
  • 34
  • 50