Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any workaround to implement YAML based pipelines for other git repositories in Azure Pipelines?

The YAML pipeline is not supported for "Other git repositories" in Azure Pipelines [as of June 4, 2022]. In our organization, we have a self-hosted Gitea server for managing source code. We want to implement YAML CI/CD pipelines using Azure Pipelines but it is not supported for other git repositories.

Is there any workaround to implement YAML pipelines for other git repositories in Azure Pipelines?

Supported YAML pipelines in Azure Pipelines

like image 656
Yasir Rehman Avatar asked Sep 11 '25 23:09

Yasir Rehman


1 Answers

Is there any workaround to implement YAML based pipelines for other git repositories in Azure Pipelines?

According to the document Supported source repositories:

YAML pipelines are a new form of pipelines that have been introduced in Azure DevOps Server 2019 and in Azure Pipelines. YAML pipelines only work with certain version control systems. The following table shows all the supported version control systems and the ones that support YAML pipelines.

enter image description here

The Azure pipelines does not support YAML pipelines with other git at this moment.

There is an user voice Support YAML pipeline with Other Git about it, you could vote it and add your feedback.

As workaround, you could add command line task then using the git command line to clone the source from the self-hosted Gitea server.

like image 169
Leo Liu-MSFT Avatar answered Sep 13 '25 11:09

Leo Liu-MSFT