For questions about Azure Pipelines, which is a proprietary Microsoft CI solution for deploying your applications.
Questions tagged [azure-pipelines]
134 questions
4
votes
3 answers
Azure DevOps Clean after pipeline run
I have self-hosted build agents using Azure DevOps. We have the clean flag in the checkout step, however we run out of space sometimes.
What is the preferred way of cleaning the agents' work directories?
The problem is, that the clean process is in…
zerocukor287
- 151
- 1
- 7
1
vote
1 answer
Equivalent of dependsOn in azure-pipelines?
In azure-pipelines one can use dependsOn to indicate what jobs or deployments should be completed before another job will be started.
At the moment, the dependsOn array of the final job has to be added everytime if some job is added.
The question is…
030
- 13,235
- 16
- 74
- 173
1
vote
1 answer
Azure DevOps build pipeline error on copy in post build event
I have built a simple pipeline to build my solution triggered by commits to the master branch using the Azure DevOps Pipelines.
I have a problem with the post build copy commands failing and returning errors
my post build copy command:
copy /Y…
Shubaka
- 13
- 3
1
vote
1 answer
Multi-Stage Azure Pipeline with a path trigger - first stage always runs
I have a multi-stage pipeline for my terraform code. This is my first pipeline so I am sure I'm missing something but there appears to be some inconsistent behaviour that is rather frustrating.
The pipeline trigger is defined as follows:
trigger:
…
Joel
- 21
- 4
0
votes
0 answers
Azure pipeline if statement is always false
I've got a variable in my library with a value of 'yes':
I store this variable in a variables object like so:
variables:
- name: runNonDeltaTest
value: $(RUN_NON_DELTA_TEST)
When running the following script in the pipeline it prints out…
0
votes
0 answers
Azure DevOps clean download folder before run
I have a deployment job like this:
jobs:
- deployment:
workspace:
clean: all
strategy:
runOnce:
deploy:
steps:
- download: build
artifact: Packages
This downloads artifacts to…
Bouke
- 101
- 1