We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78fc77d commit 587833cCopy full SHA for 587833c
.azure-pipelines/batch-generation.yml
@@ -165,7 +165,8 @@ jobs:
165
git commit -m "Apply matrix job patches to ${{ variables.GenerationBranch }}"
166
git push origin "${{ variables.GenerationBranch }}"
167
168
- git checkout $(Build.SourceBranch)
+ $sourceBranchName = "$(Build.SourceBranch)".Replace('refs/heads/', '')
169
+ git checkout $sourceBranchName
170
171
$filterModulesPath = Join-Path "$(Build.SourcesDirectory)" '.azure-pipelines' 'PipelineSteps' 'BatchGeneration' 'filter.ps1'
172
& $filterModulesPath -MaxParallelJobs "${{ variables.MaxParalleAnalyzeJobs }}"
0 commit comments