问题描述
我正在从Jenkins,Bitbucket和Jira迁移到Azure DevOps.我想使用azure管道并在本地服务器上连接,部署我的应用程序,运行SonarQube等
I'm migrating from Jenkins, Bitbucket, and Jira to Azure DevOps. I would like to use azure pipelines and connect on my on-premise server, deploy my application, run SonarQube, etc
我尝试在计算机上运行本地代理,但是无法运行部署.
I've tried to run a local agent on my machine, but I couldn't run a deploy.
已解决:
有可能.
您需要的只是一个自托管代理和一个部署组.在我的管道构建中,我使用了以下任务:
MSBuild @ 1
PublishBuildArtifacts @ 1
然后在发布管道中:
IIS部署
Solved:
It's possible.
All you need is a self-hosted agent and a deployment group.In my pipeline build I used the following tasks:
MSBuild@1
PublishBuildArtifacts@1
Then in Release Pipeline:
IIS Deployment
推荐答案
已解决:
有可能.
您需要的只是一个自托管代理和一个部署组.在管道构建中,我使用了以下任务:MSBuild @ 1
PublishBuildArtifacts @ 1
然后在发布管道中:
IIS部署
Solved:
It's possible.
All you need is a self-hosted agent and a deployment group. In my pipeline build I used the following tasks:MSBuild@1
PublishBuildArtifacts@1
Then in Release Pipeline:
IIS Deployment
这篇关于是否可以将天青管道连接到本地服务器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!