Questions tagged [azure-devops-pipelines]
269 questions
0
votes
1 answer
Why won't Azure Devops Pipelines Docker Build stamp my commit version into my dotnet core assembly correctly?
I found Scott Hanselman's tutorial on adding git commit hashes to builds using dotnet. I have tried to adopt his approach in my own project which is being built into Docker images in Azure Devops Pipelines. Unfortunately the git hash never makes it…

Daniel Arkley
- 164
- 1
- 14
0
votes
1 answer
Azure DevOps Pipelines: Newman the cli Companion for Postman on a self-hosted agent (Windows)
I am using the task "Newman the cli Companion for Postman" (Link) in a YAML pipeline to run Postman collections for testing and warm up purposes.
I use the task like the following:
- task: carlowahlstedt.NewmanPostman.NewmanPostman.NewmanPostman@4
…

quervernetzt
- 10,311
- 6
- 32
- 51
0
votes
2 answers
Azure Pipelines environments approvals
I have set up 2 environments and protected only one environment.
However pipeline run expect me to approve even before it starts.
I am assuming that Build and DevEnv deployment should happen un attended and should stop for QAEnv alone. Am I missing…

forvaidya
- 3,041
- 3
- 26
- 33
-1
votes
1 answer
Is it possible to parameterize the values in stage condition Azure DevOps Yaml
and(succeeded(), eq(variables.isMain, true))
Is it possible to parameterize 'true'. as we have 100's of projects. we need to have one parameter which we can modify to reflect it in all the projects.

Syed Aman
- 19
- 4
-1
votes
1 answer
Having Terraform skip "apply" in Azure DevOps build pipeline if the resource group already exists in Azure
The following YAML snippet is a part of my Azure DevOps build pipeline:
- task: TerraformTaskV2@2
displayName: 'Terraform plan'
inputs:
provider: 'azurerm'
command: 'plan'
workingDirectory:…

Arash
- 3,628
- 5
- 46
- 70
-1
votes
1 answer
User Audit In Azure DevOps Pipelines?
We're starting to define our deployment stages/jobs/tasks in Pipelines (as opposed to the classic "Releases") so we're able to store the whole process as YAML (Hurray source code control!). One thing I'm noticing as I review the logs, however, is a…

BigPigVT
- 1,381
- 3
- 12
- 20
-1
votes
1 answer
How to exclude stages from a release in Azure DevOps?
I have a CD pipeline in Azure DevOps. There are total 4 stages in my pipeline, stage1-qa1, stage2-qa2, stage3-qa3 and finally stage3-production deployment. stage3-qa3 not applicable for some app features in a particular release
My requirement is,…

Srinivas Charan Mamidi
- 301
- 1
- 13
-1
votes
1 answer
Return an old view of pipelines in Azure DevOps Server (TFS)
I'm using Azure DevOps version Dev18.M170.8. In this version running a pipeline is really unsuitable: I have to make 2x more clicks (so, more time is spend).
Is there any way to return an old interface?
Also, I would like to return an old…

harrr
- 11
- 5
-1
votes
1 answer
How to share build failure reason of azure devops pipeline through a mail?
I am working on build pipelines and i felt that i should be able to get a notification on why exactly my build failed when there is build failure(i.e, which task failed and reason for it ). Right now we will only get a mail which just gives build…

Sai Vamsi
- 111
- 3
- 19
-1
votes
1 answer
Azure DevOps Various Pipelines
total noob here and I hope this isn’t a sill question. I’m supposed to be helping design a strategy for infra deployments using DevOps, I’m trying to work out the best way to do the organisation, as DevOps will only be used for infra build, I was…

Norrin Rad
- 881
- 2
- 18
- 42
-1
votes
1 answer
Azure pipelines - how does Azure Network Load Balancer Task work?
I am setting up a release pipeline and I wanted to use the Azure Network Load Balancer task to take instances out of the load balancer, but I wanted to know how it does it, i.e. does it drain connections or kill connections.
I am guessing that if…

Phil
- 765
- 2
- 8
- 26
-2
votes
1 answer
Azure DevOps deploy to on-prem servers?
I am looking on how to do release pipelines to on-prem servers. I have read about self-hosted agents that are part of an agent pool. But I am also reading about deployment groups for target servers. Correct me if I am wrong, but deployment groups…

JakeUT
- 359
- 1
- 4
- 16
-2
votes
1 answer
How to execute a data factory pipeline with different set of parameters using powershell?
I have a requirement to run the pipeline multiple times with different set of parameters? Can you please help how to iterate the execution for multiple set of parameters?
Below code isn't working:
$fileNames = '"prepTable" = "test_1_ddl"',…
-2
votes
1 answer
"message": "Unexpected parameter ''",Microsoft.Azure.Pipelines.WebApi.PipelineValidationException, Microsoft.Azure.Pipelines.WebApi
I started to get an API error despite the fact it worked great until yesterday .
This is my API :
and my pipeline didn't change:
pool:
vmImage: 'macOS 10.14'
parameters:
- name: Folderpath
type: string
displayName: 'configure path'
and…

user63898
- 29,839
- 85
- 272
- 514