All Questions
Tagged with vsts or azure-devops
33,400 questions
0
votes
0
answers
31
views
Modifying files during an Azure DevOps Build Validation pipeline keeps triggering re-runs
I have a repository that implements automatic versioning using commitizen. Handling version bumps after merging to main is trivial, I have a simple pipeline to perform the cz bump and then push that ...
0
votes
0
answers
36
views
YAML for plugin registration [closed]
I need to write a YAML for plugin registration in Azure Dynamics via Azure CI/CD pipeline, I couldn't find any direct task for same. I tried searching for a PowerShell but couldn't find anything, I ...
-3
votes
0
answers
32
views
Get Ansible results in pipeline: VSO (or anything else) bug
We are facing an issue I want to share with you.
I opened a bug @Microsoft: https://developercommunity.visualstudio.com/t/Get-Ansible-results-in-pipeline:-VSO-or/11054580
In our pipeline we play an ...
1
vote
1
answer
68
views
How to get a list of all Azure DevOps project users using REST API with TypeScript
I am developing an Azure extension. I found this documentation for the Azure REST API. I wonder if there is any way to list the users in a project; something like:
export async function ...
-1
votes
0
answers
62
views
Devops. Variable template with BuildNumber
I have a devops template to add BuildNumber variable to my pipelines and I'm having problems when I pass a formated or contatenated string as parameter.
I want a template to reuse this BuildNumber in ...
Tooling
0
votes
1
replies
58
views
How to retrieve Test Cases from a Test Execution in Xray Cloud for manual-triggered automation (Azure DevOps integration)?
I am working with Xray Cloud on Jira Cloud (hosted on the Atlassian domain, not self-hosted) and I am trying to implement a manual-triggered automation workflow.
🎯 My Goal / Architecture
I want to ...
-5
votes
0
answers
46
views
How to tweak saved payload data for hundreds of test plans? [closed]
I have hundreds of tests, all using payloads which now need tweaking, such as:
first name-mark
last name-smith
dob-12.08.1996
residence-York
The environment has now changed and as such imagine 100s ...
-5
votes
0
answers
53
views
Azure Devops Agent is not stopping [closed]
The banner says: This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. Azure Devops is a tool used by ...
Advice
0
votes
5
replies
60
views
Backup GIT Repository Azure DevOps
For disaster recovery, my company needs backups of our ADO Git repos. My predecessor set up a backup by cloning the repos with --no-checkout option:
git clone --no-checkout {ReposURL} {...
0
votes
1
answer
59
views
Replace connection string in a web.config during Azure release pipeline not working
I'm creating some release pipelines in Azure DevOps to publish a web application on IIS. Because I have different environments, I want to replace the connection string in the web.config. In each ...
Best practices
0
votes
1
replies
24
views
Azure DevOps Test Plans: best practice for linking UI functional test cases when requirements change
I’m using Azure DevOps Services with Azure Test Plans and I’m struggling with traceability when requirements evolve.
Scenario:
User Story A implemented Requirement A (v1) and is now Done.
I created ...
1
vote
0
answers
29
views
Azure Synapse CI/CD (npx synapse-artifacts validate/generate) failing in build pipeline with npm EACCES trying to reach registry.npmjs.org
I’m implementing a CI/CD build pipeline for an Azure Synapse workspace. The pipeline runs on a Windows build container and is supposed to validate Synapse artifacts and generate ARM templates using ...
1
vote
0
answers
26
views
How to get the extension secret for the Azure Devops server local extension
I noticed that for Azure DevOps extensions, we can obtain a secret key from the marketplace, as mentioned in the documentation:
https://learn.microsoft.com/en-us/azure/devops/extend/develop/auth?view=...
-4
votes
0
answers
52
views
How to test changes in CD pipeline without rerunning CI pipeline?
I want to increase productivity when developing CD pipelines. Currently, each time I commit changes in CD pipeline (to test them), I have to rerun CI pipeline so that it publishes build artifacts ...
0
votes
0
answers
44
views
Azure Pipeline succeeds despite Vitest test crashing with process.abort()
Problem
My Azure Pipeline step is passing even though my NestJS unit tests are crashing with a native error during initialization. The logs show a process.abort() call and native stack trace, but the ...