Skip to content

Commit 5bb53eb

Browse files
authored
Merge pull request #341 from dotnet/dev/stevenbrix/addBackPlatformBuilds
adding back platform builds
2 parents 43f5f44 + bc8ddb2 commit 5bb53eb

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

eng/pipeline.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
value: ''
4040
- name: _OfficialBuildIdArgs
4141
value: ''
42+
- name: _Platform
43+
value: x86
44+
- name: _PlatformArgs
45+
value: /p:Platform=$(_Platform)
4246

4347
# Override some values if we're building internally
4448
- ${{ if eq(parameters.runAsPublic, 'false') }}:
@@ -69,14 +73,24 @@ jobs:
6973
value: /p:OfficialBuildId=$(BUILD.BUILDNUMBER)
7074
strategy:
7175
matrix:
72-
Build_Debug:
76+
Build_Debug_x86:
7377
_BuildConfig: Debug
7478
# override some variables for debug
7579
_PublishType: none
7680
_SignType: test
7781
_DotNetPublishToBlobFeed : false
78-
Build_Release:
82+
Build_Release_x86:
7983
_BuildConfig: Release
84+
Build_Debug_x64:
85+
_BuildConfig: Debug
86+
# override some variables for debug
87+
_PublishType: none
88+
_SignType: test
89+
_DotNetPublishToBlobFeed : false
90+
_Platform: x64
91+
Build_Release_x64:
92+
_BuildConfig: Release
93+
_Platform: x64
8094
steps:
8195
- checkout: self
8296
clean: true
@@ -87,4 +101,5 @@ jobs:
87101
$(_PublishArgs)
88102
$(_SignArgs)
89103
$(_OfficialBuildIdArgs)
104+
$(_PlatformArgs)
90105
displayName: Windows Build / Publish

0 commit comments

Comments
 (0)