尝试使用 azure-pipelines.yml 将管道池设置为默认代理池时出错
Error when trying to set pipeline pool to Default agent pool using azure-pipelines.yml
我通过 Pipelines Schema Docs 按照文档设置池
并将其设置为 pool: Default
。这应该引导管道使用默认池:
但是,我不断收到此错误:
Could not find a pool with name Default. The pool does not exist or has not been authorized for use. For authorization details, refer to https://aka.ms/yamlauthz.
据我所知应该是授权的。
我也试过:
pool:
name: Default
全天蓝色-pipelines.yml
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
trigger:
batch: true
branches:
include:
- master
- develop
pool: Default
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@0
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:DesktopBuildPackageLocation="$(build.artifactStagingDirectory)\WebApp.zip" /p:DeployIisAppPath="Default Web Site"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: VSTest@2
inputs:
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
您可以参考这个 link: https://aka.ms/yamlauthz 来解决这个问题 ;)
尝试将您的分支更改为任何其他分支并保存您的管道,然后将其更改回来并保存。 运行 管道之后。
要完成此操作,请单击 Pipelines/Build 页面右上角的“编辑”。您将看到 YAML 编辑工具。现在单击右上角的汉堡包图标和 select 变量。这将带您进入经典编辑器。在经典编辑器中单击 YAML 选项卡。在 YAML 选项卡下,您可以 select 获取源代码并更改默认分支。
我对 'Azure Pipelines' 也有同样的问题。原来项目在Agent pools中没有添加Azure Pipelines pool。您可以在 Azure DevOps 的项目设置中配置它。 (齿轮图标左下方)
这在我的环境中有效
pool:
name: default
如果您正在处理 Azure DevOps Services 或 Azure DevOps Server,这个问题并没有真正说明。使用服务器,这对我有用:
pool:
name: 'myPoolName'
我通过 Pipelines Schema Docs 按照文档设置池
并将其设置为 pool: Default
。这应该引导管道使用默认池:
但是,我不断收到此错误:
Could not find a pool with name Default. The pool does not exist or has not been authorized for use. For authorization details, refer to https://aka.ms/yamlauthz.
据我所知应该是授权的。
我也试过:
pool:
name: Default
全天蓝色-pipelines.yml
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
name: $(BuildDefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
trigger:
batch: true
branches:
include:
- master
- develop
pool: Default
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@0
- task: NuGetCommand@2
inputs:
restoreSolution: '$(solution)'
- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:DesktopBuildPackageLocation="$(build.artifactStagingDirectory)\WebApp.zip" /p:DeployIisAppPath="Default Web Site"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: VSTest@2
inputs:
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
您可以参考这个 link: https://aka.ms/yamlauthz 来解决这个问题 ;)
尝试将您的分支更改为任何其他分支并保存您的管道,然后将其更改回来并保存。 运行 管道之后。
要完成此操作,请单击 Pipelines/Build 页面右上角的“编辑”。您将看到 YAML 编辑工具。现在单击右上角的汉堡包图标和 select 变量。这将带您进入经典编辑器。在经典编辑器中单击 YAML 选项卡。在 YAML 选项卡下,您可以 select 获取源代码并更改默认分支。
我对 'Azure Pipelines' 也有同样的问题。原来项目在Agent pools中没有添加Azure Pipelines pool。您可以在 Azure DevOps 的项目设置中配置它。 (齿轮图标左下方)
这在我的环境中有效
pool:
name: default
如果您正在处理 Azure DevOps Services 或 Azure DevOps Server,这个问题并没有真正说明。使用服务器,这对我有用:
pool:
name: 'myPoolName'