-
Notifications
You must be signed in to change notification settings - Fork 743
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2922 from unoplatform/dev/jela/x-a-javac-log
Split the build in more phases to reduce build server memory pressure
- Loading branch information
Showing
6 changed files
with
102 additions
and
3,450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
parameters: | ||
vmImage: '' | ||
|
||
jobs: | ||
- job: UAP_Build | ||
|
||
pool: | ||
vmImage: ${{ parameters.vmImage }} | ||
|
||
variables: | ||
CombinedConfiguration: Release|Any CPU | ||
CI_Build: true | ||
|
||
# This is required to be able to use hard links as much as possible | ||
NUGET_PACKAGES: $(Agent.WorkFolder)\.nuget | ||
|
||
steps: | ||
- checkout: self | ||
clean: true | ||
|
||
- template: templates/nuget-cache.yml | ||
parameters: | ||
nugetPackages: $(NUGET_PACKAGES) | ||
|
||
- template: templates/gitversion.yml | ||
|
||
- powershell: .\build\Install-WindowsSdkISO.ps1 17763 | ||
displayName: Insider SDK | ||
|
||
- task: MSBuild@1 | ||
inputs: | ||
solution: src/SamplesApp/SamplesApp.UWP/SamplesApp.UWP.csproj | ||
msbuildLocationMethod: version | ||
msbuildVersion: latest | ||
msbuildArchitecture: x86 | ||
msbuildArguments: /r /p:Configuration=Release /detailedsummary /bl:$(build.artifactstagingdirectory)/build-uap.binlog | ||
clean: false | ||
restoreNugetPackages: false | ||
logProjectEvents: false | ||
createLogFile: false | ||
|
||
- task: CopyFiles@2 | ||
condition: always() | ||
inputs: | ||
SourceFolder: $(build.sourcesdirectory)/Build | ||
Contents: '*.nupkg' | ||
TargetFolder: $(build.artifactstagingdirectory)\vslatest | ||
CleanTargetFolder: false | ||
OverWrite: false | ||
flattenFolders: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.