Skip to content

adding back platform builds #341

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions eng/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
value: ''
- name: _OfficialBuildIdArgs
value: ''
- name: _Platform
value: x86
- name: _PlatformArgs
value: /p:Platform=$(_Platform)

# Override some values if we're building internally
- ${{ if eq(parameters.runAsPublic, 'false') }}:
Expand Down Expand Up @@ -69,14 +73,24 @@ jobs:
value: /p:OfficialBuildId=$(BUILD.BUILDNUMBER)
strategy:
matrix:
Build_Debug:
Build_Debug_x86:
_BuildConfig: Debug
# override some variables for debug
_PublishType: none
_SignType: test
_DotNetPublishToBlobFeed : false
Build_Release:
Build_Release_x86:
_BuildConfig: Release
Build_Debug_x64:
_BuildConfig: Debug
# override some variables for debug
_PublishType: none
_SignType: test
_DotNetPublishToBlobFeed : false
_Platform: x64
Build_Release_x64:
_BuildConfig: Release
_Platform: x64
steps:
- checkout: self
clean: true
Expand All @@ -87,4 +101,5 @@ jobs:
$(_PublishArgs)
$(_SignArgs)
$(_OfficialBuildIdArgs)
$(_PlatformArgs)
displayName: Windows Build / Publish