我正在尝试在同一管道上使用 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
有人可以帮助我们!
谢谢