Azure DevOps Delivery Plans for on-premises
Is there a way to enable "Delivery Plans" for on-premises implementation of DevOps on DevOps 2020 1.2?
Is there a way to enable "Delivery Plans" for on-premises implementation of DevOps on DevOps 2020 1.2?
We use stages in Azure DevOps, as it is possible to select which stages, you want to run when running a pipeline (see picture). An annoying thing when running stages, however, is that if you install a program in Stage…
I was trying to collect the List of Deny Assignments present in a particular tenant, so I passed the required arguments here: tenant_id = arguments['tenant_id'] client_id = arguments['client_id'] client_secret = arguments['client_secret'] I created ClientSecretCredentials here: csc = ClientSecretCredential(tenant_id=tenant_id, client_id=client_id, client_secret=client_secret)…
I have an Azure DevOps Build Pipeline YAML file that takes variables from the 'Variables' button as opposed to having "variables:" in the YAML file itself. I'm trying to pass a Number to a step that requires a Number as…
We are trying to setup CI/CD for a winform app developed using DotNet core 6. We have setup the build pipeline and it's producing the correct set of artifacts but the problem is we are unable to publish these artifacts…
When the release pipeline run end up with this error RangeError [ERR_INVALID_OPT_VALUE]: The value "4294967295" is invalid for option "size". I don't know what means this error task failed Log of the task failed when release run
I have a Develop branch and Master. My task is to trigger the build pipeline when I create a Pull Request from Develop to Master before merge, depends on Develop branch. The trigger should be from source branch. Can we…
The scenario: If "doSomething" fails then "waitforValidation" must run. After succeful validation then "doSomethingAfterValidation" must run. But currently after succesful validation "doSomethingAfterValidation" is simply Skipped. If I remove "condition: failed()" and make "doSomething" succeed there is no problem. Tried playing…
I have just begun in Azure DevOps. I made the CI/CD pipeline for our dot net project. CI successfully done and generated the artifact, but in CD getting failed always, configured deployment type = zip; I am completely new for…
In Azure DevOps, the pipeline fails at the npm run build step with an error in one of the indirect dependencies (check line 18 below). The error is jest-worker/build/index.js:110 _ending; SyntaxError: Unexpected token ";" . The pipeline.yaml is this: trigger:…