Questions tagged [multistage-pipeline]

41 questions
0
votes
1 answer

How to ask for change request id for a specific Azure DevOps stage

I am trying to build a multi-stage pipeline to deploy an application to Dev -> QA -> Production and I am able to do all of that using Azure DevOps YAML pipeline. Furthermore I want any deployments to Production environment to require a change…
Michael
  • 110
  • 7
0
votes
1 answer

How do you prevent a multi stage pipeline from being launched when another pipeline is running

I have a problem with multi stage pipelines. Let's say I have pipeline A and pipeline B. Pipeline A is as follows : Stage A.1 Stage A.2 Pipeline B is as follows : Stage B.1 Stage B.2 Those pipelines work on different triggers placed on different…
0
votes
1 answer

AzureDevOps YAML pipelines - Preventing malicious use of production service connection

I have created YAML pipeline & want to secure PROD service connection so that shouldn't be used in QA/UAT stages. I tried to add approvals on prod service connection along with PROD Environment approval(for PROD stage) but my pipeline fails…
0
votes
3 answers

In yaml based multiStage pipeline which I need to publish webApp & webjobs on one app service for 2 dotnet core based projects which are in one sol

I have tried to create two different zip for each project by adding two vsBuild tasks. While writing my yaml based pipeline I am facing two issue:- In webjob project path is…
0
votes
1 answer

Handling mulitiple servers in a Azure DevOps release pipeline stage

I have a question on Azure DevOps Release pipelines. My pipeline workflow is multi-stage where the build triggers the QA stage which then triggers the UAT stage which then triggers the PROD stage. I use pipeline variables to manage each stage and…
0
votes
3 answers

Access Pipeline Queue variable in YAML pipeline

I created a variable called Test in Pipeline UI and left the value as blank. So it appeared as shown below. I'm trying to access this variable in YAML pipeline but unable to check it's empty value. I'm trying like this : - variables - name:…
Venkata Dorisala
  • 4,783
  • 7
  • 49
  • 90
0
votes
1 answer

Iterative insertion over depenencies and condition on Multistage Azure DevOps Yamls

I want to have multiple dependencies over a template. Is there a way to establish condition over the iteration of a parameter array ? parameters: deps: [Integration, Migration] jobs: - deployment: Deploy displayName: 'Deploy' dependsOn: -…
Zahid
  • 91
  • 1
  • 10
0
votes
0 answers

Error in azure devops multi stage pipeline

We have this error in our multi-stage pipeline. Anyone who has encountered this and what did you do to fix it? I really need some help. Thanks in advance
art-a-game
  • 123
  • 1
  • 1
  • 11
0
votes
1 answer

Azure Build Pipeline - multiple repositories built with multipe jobs - how to reuse the same working directories each build?

I have a main solution and N other solutions in different repositories. Each time main solution builds I have to build N others and create an artifact of main solution containing others. My current build pipeline looks like this. [Stage 1] [Job 1]…
0
votes
1 answer

Change repo for 1 stage in multi-stage pipeline

I have an azure devops multi-stage pipeline which requires 1 stage that copies files from another repository to $(build.artifactstagingdirectory) For example my YAML looks like trigger: - master resources: - repo: self variables: tag:…
Jeanluca Scaljeri
  • 26,343
  • 56
  • 205
  • 333
-1
votes
1 answer

Dashboard for Azure multi-stage pipeline? Status widgets only support aggregate results?

My question is about creating test results Dashboard for Azure multi-stage pipeline? It seems that the built-in Azure Dashboard widgets only support aggregate results, on a per-repo basis, in aggregate for all stages of a pipeline? Q: Is there a way…
1 2
3