pipeline
7 Topicsdynamic pipeline and deployments with approvals
I am looking to create a multistage YAML pipeline in Azure DevOPS that: * Dynamically generates jobs based on the value(s) of a variable from a previous step (e.g., host names). * Ensures that each dynamically created job includes its own approval step, either through ManualApproval@0 or via an environment. The challenge I am facing is that while "strategy: matrix" allows for the dynamic creation of build jobs, this strategy is not permitted for deployments, which are necessary for implementing approval steps. Do you have any suggestions on how to resolve this issue?27Views0likes1CommentAzure Devops Pipeline for Power Platform solution : Tenant to Tenant
I have a query related to Azure Devops Pipeline. Is it possible to move form one tenant to another tenant. Is it possible to move canvas app solution using Azure Devop Pipelines. If yes, I am using Sharepoint lists. Can this be moved, as it wont be the part of solution, should it be done manually? I am also using environment variables, How will this be mapped in the receiver tenant using pipelines. I have few solutions that i need to move from one solution to another every sprint. So what will be the suitable plan/license for it. Can you please share relevant documents or steps or related videos if any regarding this.132Views0likes1CommentNeed help to set up a pipeline using tasks and YAML to deploy a BICEP template and use a param file
I am trying to set up a pipeline that will deploy a BICEP template written by our cloud team and then use a param file to pass in the application specifics to create the Azure resource group and app services for an application. Ideally do not want to do this in powershell and instead in YAML or even better using the tasks in the pipeline builder. Currently everything I have tried doesn't work and errors. Has anyone done this before and have a proven method or any tips?795Views0likes1CommentHow to disable AzureDevOps Pipeline Parallelism
I have just created an organization in AzureDevops in the Free Tier. And everytime I try to create a Pipline ( even the starter/empty one ) I get this error. ##[error]No hosted parallelism has been purchased or granted. To request a free parallelism grant, please fill out the following form https://aka.ms/azpipelines-parallelism-request I tried to google around to find how can I change the settings to Parallelism and disable it or deactivate it, but I couldn't find anything useful. I tried: demands: Limit -equals DisAbleParallel but didn't do anything. Probably this is only for the self-hosted. I am not sure what could be the next thing that I need to do. I appreciate any help,6.4KViews0likes1CommentValidate changed files in last commit
Hi, I created the Pipeline using this plugin and also test manually. The problem is when execute the pipeline, I need validate only the new files but the Azure Pipeline execute a reset HARD and therefore I don't have multiple commit in pipeline and I can't validate the files that different in new commit. How can I validate only the new files? My company has repositories in Azure DevOps of .Net and inside the repository has the SRC directory with multiple functions. Each function contains its respective pipeline then I need check what function had alterations for run the pipleine.2.2KViews0likes0CommentsPipeline Alias
Hello, I have a DevOps pipeline in which I need to download an artifact produced by another pipeline. I want to use something like this: - task: DownloadPipelineArtifact@2 displayName: Download Pipeline Artifacts inputs: source: 'specific' project: '$(resources.pipeline.<alias>.projectID)' pipeline: '$(resources.pipeline.<alias>.pipelineID)' preferTriggeringPipeline: true ${{ if eq(parameters.buildPipelineId, 'latest') }}: buildVersionToDownload: 'latestFromBranch' ${{ if ne(parameters.buildPipelineId, 'latest') }}: buildVersionToDownload: 'specific' runId: '${{ parameters.buildPipelineId }}' runBranch: '$(Build.SourceBranch)' path: $(Pipeline.Workspace)/${{ parameters.artifactName }} but I don't know which value I must insert instead of "alias". My source pipeline is named "1-TestPipeline" and is under the TEST folder in the DevOps Pipeline tab. Can you help me? Thanks, G1.8KViews0likes1CommentEnvironment comparison
Hi , Can anyone please help to understand, how do we compare two different environments Azure DevOps pipeline? Our scenario is , we have different Development team who will be responsible for all the Dev Environment related Build and Release Pipeline setup and deployment. Whatever changes are done in the Dev environment the same needs to be replicated in other environments like QA, UAT which are owned by other team. Currently we are facing challenges when run release pipeline on QA & UAT environments by referring Dev environment. Sometimes we are missing some variables, parameters whatever used in the Dev environments using terraform. The deployment is working well in the dev environment whereas not working in other environments using the same source code and same terraform scripts. Due to this, we are struggling every deployment code release whenever Dev team is releasing the code. Is there any possibilities how do we compare Dev environment with all the variables, parameters, pipeline configurations with QA & UAT environments and make sure all our configurations are matching with Dev environments without any discrepancy?1.6KViews0likes0Comments