From 6d71f84dadb8f5a945b7461386e5d282fe4c36a1 Mon Sep 17 00:00:00 2001 From: Andy Gocke Date: Fri, 16 Apr 2021 15:42:45 -0700 Subject: [PATCH] Add CI jobs (#10229) --- .vsts-ci.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 54bbaa8bb..6fe393a60 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -118,6 +118,12 @@ stages: _AdditionalBuildParameters: '/p:PublishInternalAsset=true' # Never run tests on PGO bits _TestArg: '' + Build_Release_x86: + _BuildConfig: Release + _BuildArchitecture: x86 + _DOTNET_CLI_UI_LANGUAGE: '' + _AdditionalBuildParameters: '' + _TestArg: '' pgoInstrument: true - template: /eng/build.yml @@ -290,6 +296,29 @@ stages: _BuildArchitecture: 'x64' _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 parameters: agentOs: Darwin