3

Pipelines Schema Docsを介してプールを設定するためのドキュメントに従い、その ように設定しましたpool: Default。これにより、デフォルト プールを使用するようにパイプラインが指示されます。

dev-ops UI の [すべてのエージェント プール] の下の既定のエージェント プール

ただし、次のエラーが発生し続けます。

Default という名前のプールが見つかりませんでした。 プールが存在しないか、使用が許可されていません。 承認の詳細については、https://aka.ms/yamlauthz を参照してください。

Default という名前のプールが見つかりませんでした。プールが存在しないか、使用が許可されていません。承認の詳細については、https://aka.ms/yamlauthzを参照してください。

私が知る限り、それは承認されるべきです。

私も試しました:

pool:
  name: Default

完全な azure-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)'
4

4 に答える 4