Pipelines
21 TopicsTrigger Azure pipeline from multiple repositories
Hello. I am trying to create a simple pipeline that runs tests. I wanna trigger my pipeline from 2 repositories (I used this doc https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/multi-repo-checkout?view=azure-devops#triggers). The first repository contains ‘azure-pipelines.yml’, in which I specified triggers from both repos: resources: repositories: - repository: todo-app-server type: github endpoint: max_pat name: maximkulakivsky/todo-app-server trigger: - master trigger: - master ... When I make a commit to the first repository everything is working and the pipeline is triggered. But when I make a commit to the second repo nothing is happening. I tried changing my Oauth connection to Github PAT (I used this doc https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/github?view=azure-devops&tabs=yaml), but that didn’t help. Please, help me.9.3KViews0likes2CommentsDeploy Logic App Standard to storage account with private endpoints using Terraform
This blog provides examples on how to use Terraform and Azure DevOps to create standard Logic App to a storage account within private network. Here are the resources that will be created: VNET and subnets for Logic App and storage account Storage account and fileshare Private endpoints for storage file, blob, table and queue and the private DNS zones App service plan Application insight Standard Logic App with VNET intigration Private endpoint for Logic App and private DNS zone5.1KViews3likes1CommentBUILD PIPELINE NuGet ERRORs
I am writing my first BUILD Pipeline and am having problems. First my environment: 1) On Prem TFS/DEVOPS 2) behind firewall 3) On Prem NuGet Server 4) source is stored in TFVC 5) code is for a CRM plugin 6) solution consists of around a dozen projects I am trying to create a BUILD pipeline that compiles the checked in code. i have created a Pipeline that is based on a .NET Desktop template the first task in the agent is to Use NuGet 4.4.1/ I have selected the Default Agent Pool this step fails with the following errror; You are using a query match on the version string. Behavior changes or breaking changes might occur as NuGet updates to a new version. ERR:connect ETIMEDOUT 152.199.23.209:443 ##[section]Finishing: Use NuGet 4.2.0.2457 i checked: the IP address is blocked by our firewall if i disable this step, the Pipeline fails on the next step which is the NuGet restore step. the NuGetError.doc attachment shows the errror. It looks to me like it was not able to download the required local Nuget packages. I don't know how to resolve this problem. Can someone suggest a solution? thanks4.2KViews0likes2CommentsDeploy Workflows to Logic App Standard using AZ CLI Task in DevOps Pipeline with Append Option
The zipDeploy method used for Deploying Logic Apps Standard overwrites all/any existing files in the wwwroot folder. Set up DevOps for Standard logic apps - Azure Logic Apps | Microsoft Learn This tutorial is for using an Azure CLI task instead of the zipDeploy task, to give you flexibility on whether to overwrite the files/folder or not.3.5KViews2likes1CommentSudden errors with pipelines and artefacts: Can't download artifacts from other pipelines
Hi, since today I'm experiencing issues with the DownloadArtifactPipeline suddenly. What we do is basically downloading an artifact from a different pipeline. ##[error]No builds currently exist in the pipeline definition supplied. This is strange because it worked flawlessly before, has something changed with this task? Or have someone experienced the same issue before - task: DownloadPipelineArtifact@2 displayName: 'Download Pipeline Artifact' inputs: source: 'specific' project: 'xxxx' pipeline: '2303' buildVersionToDownload: 'latestFromBranch' branchName: 'refs/heads/main' path: '$(Pipeline.Workspace)/stages'3.4KViews1like0Comments