Azure Yaml Schema Batch Trigger
can anyone explain what Batch in Azure YAML Schema Trigger does? The only explanation on MSFT website is batch changes if true; start a new build for every push if false (default) and this isn't really clear to me
ReadMeFeed / Community knowledge
Real questions. Useful conversations. Find the people who know your stack.
can anyone explain what Batch in Azure YAML Schema Trigger does? The only explanation on MSFT website is batch changes if true; start a new build for every push if false (default) and this isn't really clear to me
I am trying to understand the difference between the two nuget restore commands in Azure build pipeline: - task: NuGetCommand@2 inputs: restoreSolution: '$(solution)' and - task: DotNetCoreCLI@2 inputs: command: 'restore' projects: '$(solution)' feedsToUse: 'select' I have tried to understand but at microsoft pages all I see is that one can use both - I can'
I am trying to assign a specific agent on my agent pool but I don't know how to do it. Does anyone know it? I tried with this but doesn't work: - stage: Deploy pool: alm-aws-pool agent.name: deploy-05-agent1
As it is possible to stop a single step in a Azure DevOps pipeline: echo "##vso[task.complete result=Succeeded;]DONE" See: https://github.com/microsoft/azure-pipelines-tasks/blob/master/docs/authoring/commands.md#task-logging-commands Is it also possible to check a condition and stop the whole pipeline run or job depending on that? PS. I know, you can set co
I'm using Azure Pipelines as a part of Azure DevOps. I'm trying to define variables in my template file, because I need to use the same value multiple times. This is my stage-template.yml : parameters: - name: param1 type: string - name: param2 type: string variables: var1: path/${{ parameters.param2 }}/to-my-file.yml stages: - stage: Deploy${{ parameters.pa