Skip to content

Commit

Permalink
adding platform builds to dotnet/wpf
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbrix committed Nov 12, 2018
1 parent 6882e24 commit 22abba5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion eng/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ phases:
$(_PublishArgs)
$(_SignArgs)
$(_OfficialBuildIdArgs)
/p:IsShipping=$(_IsShipping)
/p:Platform=$(_Platform) /p:IsShipping=$(_IsShipping)
displayName: Windows Build / Publish
condition: and(succeeded(), eq(variables['Agent.Os'], 'Windows_NT'))

Expand Down
16 changes: 14 additions & 2 deletions eng/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,26 @@ phases:
name: ${{ parameters.agentPool }}
parallel: 99
matrix:
Build_Debug:
Build_Debug_x86:
_BuildConfig: Debug
# overwrite some values when building debug
_PublishType: none
_SignType: test
_DotNetPublishToBlobFeed : false
Build_Release:
_Platform: x86
Build_Debug_x64:
_BuildConfig: Debug
# overwrite some values when building debug
_PublishType: none
_SignType: test
_DotNetPublishToBlobFeed : false
_Platform: x64
Build_Release_x86:
_BuildConfig: Release
_Platform: x86
Build_Release_x64:
_BuildConfig: Release
_Platform: x64

# only publish build assets if we're running internally
- ${{ if eq(parameters.runAsPublic, 'false') }}:
Expand Down

0 comments on commit 22abba5

Please sign in to comment.