Skip to content

Commit

Permalink
BUILD: Disable parallel build
Browse files Browse the repository at this point in the history
The build agents can't handle the size of our PCH files.

Signed-off-by: Dustin Howett <duhowett@microsoft.com>
  • Loading branch information
DHowett authored and skyline75489 committed Oct 10, 2020
1 parent 84f0fba commit e1332e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/pipelines/templates/build-console-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ steps:
configuration: '$(BuildConfiguration)'
msbuildArgs: "${{ parameters.additionalBuildArguments }}"
clean: true
maximumCpuCount: true
# The build agents cannot currently support parallel build due to the
# memory requirements of our PCH files.
maximumCpuCount: false

- task: PowerShell@2
displayName: 'Check MSIX for common regressions'
Expand Down

0 comments on commit e1332e1

Please sign in to comment.