Add CI jobs (#10229)

This commit is contained in:
Andy Gocke 2021-04-16 15:42:45 -07:00 committed by GitHub
parent 5c0fd3ae47
commit 6d71f84dad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -118,6 +118,12 @@ stages:
_AdditionalBuildParameters: '/p:PublishInternalAsset=true' _AdditionalBuildParameters: '/p:PublishInternalAsset=true'
# Never run tests on PGO bits # Never run tests on PGO bits
_TestArg: '' _TestArg: ''
Build_Release_x86:
_BuildConfig: Release
_BuildArchitecture: x86
_DOTNET_CLI_UI_LANGUAGE: ''
_AdditionalBuildParameters: ''
_TestArg: ''
pgoInstrument: true pgoInstrument: true
- template: /eng/build.yml - template: /eng/build.yml
@ -290,6 +296,29 @@ stages:
_BuildArchitecture: 'x64' _BuildArchitecture: 'x64'
_TestArg: $(_NonWindowsTestArg) _TestArg: $(_NonWindowsTestArg)
- template: /eng/build.yml
parameters:
agentOs: Linux
pool:
${{ if eq(variables['System.TeamProject'], 'public') }}:
name: NetCorePublic-Pool
queue: BuildPool.Ubuntu.1604.Amd64.Open
${{ if eq(variables['System.TeamProject'], 'internal') }}:
name: NetCoreInternal-Pool
queue: BuildPool.Ubuntu.1604.Amd64
timeoutInMinutes: 180
strategy:
matrix:
# Always run builds
Build_LinuxPortable_Release_x64:
_BuildConfig: Release
_DockerParameter: ''
_LinuxPortable: '--linux-portable'
_RuntimeIdentifier: ''
_BuildArchitecture: 'x64'
_TestArg: ''
pgoInstrument: true
- template: /eng/build.yml - template: /eng/build.yml
parameters: parameters:
agentOs: Darwin agentOs: Darwin