4

我正在尝试在同一管道上使用 2 个存储库。一个存储库包含源代码,另一个存储库包含模板。

存储库源代码的 azure-pipeline.yml 如下所示:


pool: alm-aws-pool 

resources: 
  repositories: 
  - repository: AzurePipelines 
    name: ALM/AzurePipelines 
    type: git 
    ref: master #branch name


steps:
- template: TG1_build&Nuget.yml@AzurePipelines
  parameters:
    solution: '**/*.sln'
    buildPlatform: 'Any CPU'
    buildConfiguration: 'Release'
    IsNugetPrerelaseVersion: true

模板 TG1_build&Nuget.yml 是:

steps:
- task: NuGetToolInstaller@1
  displayName: 'Use NuGet 5.1.0'
  inputs:
    versionSpec: 4.0.0
- task: NuGetCommand@2
  displayName: 'NuGet restore **/*.sln'
  inputs:
    vstsFeed: '****'
    noCache: true
- task: sonarqube@4
  displayName: 'Prepare analysis on SonarQube'
  inputs:
    SonarQube: 'SonarQube'
    projectKey: '$(Build.Repository.Name)'
    projectName: '$(Build.Repository.Name)'
- powershell: |
   #The double dollar is intended for using the constant $true or $false
   $isBeta=$$(IsNugetPrerelaseVersion) 
   if (-Not $isBeta) {
       exit 0;
   }
   
   $workingDirectory = "$(System.DefaultWorkingDirectory)"
   $filePattern = "*AssemblyInfo*"
   $pattern = '^(?!//)(?=\[assembly: AssemblyVersion\("(.*)"\)\])'
   
   Get-ChildItem -Path $workingDirectory -Recurse -Filter $filePattern | ForEach-Object {
       $path = $_.FullName
       Write-Host $path
       (Get-Content $path) | ForEach-Object{
           if($_ -match $pattern){
               # We have found the matching line
               # Edit the version number and put back.
               $fileVersion = $matches[1]
               $newVersion = "$fileVersion-beta"
               '[assembly: AssemblyVersion("{0}")]{1}[assembly: AssemblyInformationalVersion("{2}")]' -f $fileVersion,"`r`n",$newVersion 
           } else {
               # Output line as is
               $_
           }
       } | Set-Content $path
   }
   
   $filePattern = "**.csproj*"
   $pattern1 ="<Version>"
   $pattern2 ="</Version>"
   $pattern = '(?={0})' -f $pattern1
   $empty = ""
   
   Get-ChildItem -Path $workingDirectory -Recurse -Filter $filePattern | ForEach-Object {
       $path = $_.FullName
       Write-Host $path
       (Get-Content $path) | ForEach-Object{
           if($_ -match $pattern){
               # We have found the matching line
               # Edit the version number and put back.
               $fileVersion = $_
               $fileVersion = $fileVersion -replace $pattern1, $empty
               $fileVersion = $fileVersion -replace $pattern2, $empty
               $fileVersion = $fileVersion.Trim()
               $newVersion = "$fileVersion-beta"
               '<Version>{0}</Version>' -f $newVersion
           } else {
               # Output line as is
               $_
           }
       } | Set-Content $path
   }
  displayName: 'Update Assembly Info for nuget generation'
- task: VSBuild@1
  displayName: 'Build solution **\*.sln'
  inputs:
    msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(BuildConfiguration)-binaries.zip" /p:RunCodeAnalaysis=true'
    platform: '$(BuildPlatform)'
    configuration: '$(BuildConfiguration)'
    clean: true
    maximumCpuCount: true
    msbuildArchitecture: x64
    createLogFile: true
- task: NuGetCommand@2
  displayName: 'NuGet pack'
  inputs:
    command: pack
    packagesToPack: '$(SearchPatternToPack)'
    packDestination: '$(Build.ArtifactStagingDirectory)/nugets'
    includeReferencedProjects: true

当我尝试运行此管道时,我发现此错误:/azure-pipelines.yml: File /TG1_build&Nuget.yml not found in repository https://dev.azure.com/Fabrikam/ALM/_git/AzurePipelines branch refs/heads/主版 d6d59eef922dac0324654b49a71037a504102ff4

有人可以帮助我们!

谢谢

4

4 回答 4

2

您可以尝试使用出步骤从其他存储库中签出源代码并确保路径正确:

steps:
- checkout: AzurePipelines
  path: 's'
- template: s/TG1_build&Nuget.yml
...
于 2020-06-30T15:26:48.593 回答
0

好吧,这是一个愚蠢的,但它花了我几个小时......

  1. 检查目标文件是否有ymlvsyaml并确保您引用的是正确的!

这是实际存在的文件的变体,但我盯着它看了一会儿,然后“啊哈”

于 2021-08-11T14:19:28.357 回答
0

我创建了一个类似于您上面的测试 yaml 管道。我只能在以下情况下重现上述错误。

  • 我引用了不存在模板 yaml 文件的资源库的错误分支。

  • 我打错了模板yaml文件名,导致找不到模板yaml文件。

所以请检查模板yaml文件是否存在于资源库的master分支中,并确保模板yaml文件的名称正确。

于 2020-07-01T06:20:17.007 回答
0

我发现我需要在模板前面加上/,或者它与源管道模板相关(这让我发现了真正的问题),而不是存储库的根目录。

   - job: foo
     displayName: 'foo name'
     steps:
-      - template: azure-pipeline-templates/tests_integration.yml@self
+      - template: /azure-pipeline-templates/tests_integration.yml@self

错误:

/azure-pipelines/pipeline-tests-basic.yml:在存储库中找不到文件 /azure-pipelines/azure-pipeline-templates/tests_integration.yml ..

模板存在于 中azure-pipeline-templates,与 同级azure-pipelines

azure-pipelines
└ pipeline-tests-basic.yml
azure-pipeline-templates
└ tests_integration.yml

据推测,将多个存储库指定为资源的管道之间存在差异。

于 2020-08-21T17:40:50.217 回答