Skip to content

Commit

Permalink
Increase parallelism in sourceline and symbols validation (#7330)
Browse files Browse the repository at this point in the history
These two powershell scripts allowed for 6 parallel jobs. Going up to 16 significantly improves the performance of these jobs in the release pipeline (from 1.5hrs to 1 hr for symbols validation and 4.9hrs to 1.9hrs for sourcelink validation).
  • Loading branch information
michellemcdaniel committed May 3, 2021
1 parent f3dbc5e commit e9fd640
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eng/common/post-build/sourcelink-validation.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ param(
$global:RepoFiles = @{}

# Maximum number of jobs to run in parallel
$MaxParallelJobs = 6
$MaxParallelJobs = 16

# Wait time between check for system load
$SecondsBetweenLoadChecks = 10
Expand Down
2 changes: 1 addition & 1 deletion eng/common/post-build/symbols-validation.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ param(
)

# Maximum number of jobs to run in parallel
$MaxParallelJobs = 6
$MaxParallelJobs = 16

# Max number of retries
$MaxRetry = 5
Expand Down

0 comments on commit e9fd640

Please sign in to comment.