Define Azure Pipeline For Multi-Repos
I have a project in Azure that has many repositories. All of the repositories need to run with the same pipeline, so I'm looking for a way to define the repository name as a variable. Here's an example of what…
I have a project in Azure that has many repositories. All of the repositories need to run with the same pipeline, so I'm looking for a way to define the repository name as a variable. Here's an example of what…
I have a tabular model with two data source connections. Both data sources connect to different servers (and databases) to retrieve data for the tables in the model. Within Azure DevOps, I have created a release pipeline to deploy the…
I'm new to Azure DevOps. I have a repo that contains multiple solutions and each solution contains multiple projects. These projects have dependencies on each other. Projects are targeting .NET 4.7.1. Building all of them in order, I get a…
TL;DR: How to get all the artifact names in deploy pipeline? Hi, I have multiple branches, and a single generic build pipeline to build their artifacts artifact name example: TestProject_Feature1Branch_BuildNumber70_Date20240725 I'd like to create a generic deploy pipeline. How can…
Why can't I do this: azure-pipeline.yml: extends build-and-deploy.yml@demo ... parameters: - name: allowDevDeployment displayName: "Allow this build to be deployed to DEV" type: boolean default: false - name: selectDeploymentType displayName: Select deployment type type: string default: 0 values: - 0…
My requirement is to automate the creation of secrets in Keyvault without exposing the values of these secrets during the pipeline execution(AzureDevops Server). tried, different options such as having input paramaters (it will display the values when its perform initialization)…
Given this Azure DevOps yaml for a test pipeline: trigger: - master pool: vmImage: ubuntu-latest parameters: - name: dotnetVersion type: string default: '8.0' - name: build_config type: object default: - solution: name: TestProject vsBuild: false dotnetBuild: true buildConfiguration: Debug buildPlatform:…
I am trying to disable a build pipeline on Azure DevOps using Powershell but getting an error Script: $project = "<Project-Name>" $organization = "<Org-Name>" $pat = "<PAT>" $base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(":$($pat)")) $headers = @{ Authorization = "Basic $base64AuthInfo" "Content-Type" = "application/json"…
I've recently migrated some of my build steps to Microsoft-Hosted mac agents. After creating .dmg of my app (about 10MB), I copy it into the Artifacts Staging di3rectory. This used to take seconds on my self-hosted mac agents, but now…
Recently upgraded my application to .NET 8.0. Getting below error in Azure pipeline. ##[error]Error: The process '/opt/hostedtoolcache/dotnet/dotnet' failed with exit code 2 Info: Azure Pipelines hosted agents have been updated and now contain .Net 5.x SDK/Runtime along with the older…