msquic/.azure/azure-pipelines.perf.yml

449 строки
12 KiB
YAML
Исходник Обычный вид История

#
# Continuous Integration (CI)
# This pipeline builds and runs MsQuic performance tests.
#
2022-03-10 21:35:36 +03:00
trigger:
branches:
include:
- main
paths:
include:
- .azure/azure-pipelines.perf.yml
- .azure/templates/run-performance.yml
- .gitmodules
2022-05-10 19:46:58 +03:00
- scripts/performance.ps1
- scripts/performance-helper.psm1
2022-05-10 19:46:58 +03:00
- scripts/prepare-machine.ps1
- scripts/RemoteTests.json
2023-08-09 21:30:26 +03:00
- scripts/xdp.json
2022-03-26 16:26:55 +03:00
- src/bin/*
2022-03-10 21:35:36 +03:00
- src/core/*
- src/platform/*
- src/perf/*
- submodules/openssl/*
2022-03-10 21:35:36 +03:00
pr:
branches:
include:
- main
paths:
include:
- .azure/azure-pipelines.perf.yml
- .azure/templates/run-performance.yml
- .gitmodules
- scripts/performance.ps1
- scripts/performance-helper.ps1
2022-05-10 19:46:58 +03:00
- scripts/prepare-machine.ps1
- scripts/RemoteTests.json
2022-03-29 23:19:39 +03:00
- src/bin/*
2022-03-10 21:35:36 +03:00
- src/core/*
- src/platform/*
- src/perf/*
- submodules/openssl/*
name: 0.$(Date:yyyy).$(Date:MM).$(DayOfMonth).$(Rev:rr).0
parameters:
2022-03-10 21:35:36 +03:00
- name: winkernel
type: boolean
displayName: Windows Kernel
default: true
- name: winuser_schannel
type: boolean
displayName: Windows (Schannel)
default: true
2022-03-29 23:19:39 +03:00
- name: winuser_xdp
type: boolean
displayName: Windows (XDP, Schannel)
default: true
2022-03-10 21:35:36 +03:00
- name: winuser_openssl
type: boolean
displayName: Windows (OpenSSL)
default: true
2023-02-02 21:43:49 +03:00
- name: winuser_openssl3
type: boolean
displayName: Windows (OpenSSL3)
default: true
2022-03-10 21:35:36 +03:00
- name: linux_openssl
type: boolean
displayName: Linux (OpenSSL)
default: true
2023-02-02 21:43:49 +03:00
- name: linux_openssl3
type: boolean
displayName: Linux (OpenSSL3)
default: true
2022-03-10 21:35:36 +03:00
- name: arch
type: string
2022-03-10 21:35:36 +03:00
displayName: Architecture
default: x64
values:
2022-03-10 21:35:36 +03:00
- x64
- x86
- name: pgo_mode
type: boolean
displayName: PGO Mode
default: false
- name: logging
type: string
displayName: Logging Type
default: None
values:
- None
- Basic.Light
- Basic.Verbose
- Datapath.Light
- Datapath.Verbose
- Full.Light
- Full.Verbose
- Performance.Light
- Performance.Verbose
- RPS.Light
2022-06-16 01:16:17 +03:00
- RPS.Verbose
- Stacks.Light
- Stacks.Verbose
2020-10-15 03:52:43 +03:00
- name: testToRun
type: string
displayName: Run Specific Test
default: all
values:
- all
- ThroughputUp
- ThroughputDown
- RPS
- HPS
- name: testTypes
type: string
displayName: Test Types
default: Remote,Loopback
values:
- Remote,Loopback
- Remote
- Loopback
2021-01-22 22:56:31 +03:00
- name: protocol
type: string
displayName: Protocol
default: QUIC
values:
- QUIC
- TCPTLS
- name: iterations
type: number
displayName: Force Iterations
default: 0
2022-06-09 15:46:23 +03:00
- name: timeout
type: number
displayName: Timeout (minutes)
default: 45
- name: QTIP
type: boolean
displayName: QTIP
default: false
2020-10-13 07:20:57 +03:00
stages:
#
# Builds
#
2022-03-10 21:35:36 +03:00
- ${{ if eq(parameters.winkernel, true) }}:
- stage: build_winkernel
displayName: Build Windows Kernel
dependsOn: []
variables:
runCodesignValidationInjection: false
jobs:
- template: ./templates/build-config-winkernel.yml
parameters:
arch: ${{ parameters.arch }}
config: Release
Unify datapath (#3819) * Remove QUIC_USE_RAW_DATAPATH (logic only) * move logic to core side * remove QUIC_USE_RAW_DATAPATH from test * fix googletest version and add last line * replace from flag to function call * fix build error * fix build/test issues * implement CxPlatResolveRoute for normal socket * add Getter of Datapath feature * fix build issues * adopt comments * adopt comment and fix kernel build error * fix kernel build error * more fix for kernel build * Unify datapath * DatapathTest partially work * just unify build of both normal socket and xdp * SOCKET: RAW{...Socket{BASE{addr}}}, DATAPATH: XDP{RAW{DATAPATH*}} <-> DATAPATH{RAW*, BASE{callbacks}} * tmp * add preview_feature flag back * refactoring CxPlatIsRouteReady * fix linux code check * adjust func names * fix comments * fix IsRouteReady and clean ifdef for _KERNEL_MODE * kernel build error * Set RouteResolved for Rx * fix more tests * move global definition in header file * kernel to avoid calling helper function * move QuitTestIsFeatureSupported after RegistrationOpen * supress warning * remove QuitTestIsFeatureSupported from quic_gtest as it doesn't work as expected by dependency of MsQuicLib.Datapath * remove raw feature check as much as possible * ifdef for UseQTIP visibility * tmp * tmp * fix merge side effects * all tests passed * fix tests in msquicplatformtest * fix tcp with duonic * update clog * use xdp v1 * WIP cleanup * refactoring CXPLAT_SEND_DATA * remove mangling and function pointer * remove unnecessary change in test * fix comments * cleanup * move logic to _winuser * use dummy raw datapath for uwp build * dummy raw * remove double free * fix comments * update dummy func * fix perf run for TCP * partially fix comments * fix build error for uwp and remove duplicate variable in raw socket * set socket before start receiving * add dummy to clog * add clog files for dummy * fix dependency for cargo on windows * remove dummy clog files * remove AuxSocket * add pwsh for cargo setup * clog fix * add include dir for cargo * [WIP] fix cargo and qtip * fix clog, qtip, rename private raw functions and cleanup * experiment to avoid write overflow * use Config->Route->DatapathType for data allocation * more strict if conditions * fix comments * fix uwp build * fix clog and artifact name * fix back xdp dependency * Simply build automation * missed one * apply unification to linux and remove QUIC_USE_XDP flag * move types to any platform * add abstruction layer for linux * add clog * add clog dependencies * fix CodeCheck issues * remove xdp specific artifact dir name and always install xdp deps * add docs * More Fixes for XDP in automation (mostly OneBranch) --------- Co-authored-by: Nick Banks <nibanks@microsoft.com>
2023-09-23 22:45:17 +03:00
- ${{ if or(eq(parameters.winkernel, true), eq(parameters.winuser_schannel, true), eq(parameters.winuser_xdp, true)) }}:
2022-03-10 21:35:36 +03:00
- stage: build_winuser_schannel
displayName: Build Windows (Schannel)
dependsOn: []
variables:
runCodesignValidationInjection: false
jobs:
- template: ./templates/build-config-user.yml
parameters:
2022-03-10 21:35:36 +03:00
image: windows-latest
platform: windows
2020-10-13 07:20:57 +03:00
arch: ${{ parameters.arch }}
2022-03-10 21:35:36 +03:00
tls: schannel
config: Release
2023-11-27 20:16:40 +03:00
extraPrepareArgs: -DisableTest
2022-03-10 21:35:36 +03:00
${{ if eq(parameters.pgo_mode, false) }}:
extraBuildArgs: -DisableTest -DisableTools
${{ if eq(parameters.pgo_mode, true) }}:
extraBuildArgs: -DisableTest -DisableTools -PGO
2022-03-10 21:35:36 +03:00
- ${{ if eq(parameters.winuser_openssl, true) }}:
- stage: build_winuser_openssl
displayName: Build Windows (OpenSSL)
dependsOn: []
variables:
runCodesignValidationInjection: false
jobs:
- template: ./templates/build-config-user.yml
parameters:
image: windows-latest
platform: windows
arch: ${{ parameters.arch }}
tls: openssl
config: Release
2022-03-12 00:08:56 +03:00
extraPrepareArgs: -DisableTest
2022-03-10 21:35:36 +03:00
${{ if eq(parameters.pgo_mode, false) }}:
extraBuildArgs: -DisableTest -DisableTools
2022-03-10 21:35:36 +03:00
${{ if eq(parameters.pgo_mode, true) }}:
extraBuildArgs: -DisableTest -DisableTools -PGO
2023-02-02 21:43:49 +03:00
- ${{ if eq(parameters.winuser_openssl3, true) }}:
- stage: build_winuser_openssl3
displayName: Build Windows (OpenSSL3)
dependsOn: []
variables:
runCodesignValidationInjection: false
jobs:
- template: ./templates/build-config-user.yml
parameters:
image: windows-latest
platform: windows
arch: ${{ parameters.arch }}
tls: openssl3
config: Release
extraPrepareArgs: -DisableTest
${{ if eq(parameters.pgo_mode, false) }}:
extraBuildArgs: -DisableTest -DisableTools
${{ if eq(parameters.pgo_mode, true) }}:
extraBuildArgs: -DisableTest -DisableTools -PGO
2022-03-10 21:35:36 +03:00
- ${{ if eq(parameters.linux_openssl, true) }}:
- stage: build_linux_openssl
displayName: Build Linux (OpenSSL)
dependsOn: []
variables:
runCodesignValidationInjection: false
jobs:
- template: ./templates/build-config-user.yml
parameters:
image: ubuntu-20.04
2022-03-10 21:35:36 +03:00
platform: linux
2020-10-13 07:20:57 +03:00
arch: ${{ parameters.arch }}
2022-03-10 21:35:36 +03:00
tls: openssl
config: Release
2022-03-12 00:08:56 +03:00
extraPrepareArgs: -DisableTest
extraBuildArgs: -DisableTest -DisableTools
- ${{ if eq(parameters.linux_openssl3, true) }}:
2023-02-02 21:43:49 +03:00
- stage: build_linux_openssl3
displayName: Build Linux (OpenSSL3)
dependsOn: []
variables:
runCodesignValidationInjection: false
jobs:
- template: ./templates/build-config-user.yml
parameters:
image: ubuntu-20.04
platform: linux
arch: ${{ parameters.arch }}
tls: openssl3
config: Release
extraPrepareArgs: -DisableTest
extraBuildArgs: -DisableTest -DisableTools
#
2022-03-10 21:35:36 +03:00
# Tests
#
2022-03-10 21:35:36 +03:00
- ${{ if eq(parameters.winkernel, true) }}:
- stage: perf_winkernel
displayName: Performance Testing Windows Kernel
dependsOn:
- build_winkernel
- build_winuser_schannel
2022-03-10 21:35:36 +03:00
jobs:
- template: ./templates/run-performance.yml
parameters:
pool: MsQuic-Win-Perf
platform: windows
localTls: schannel
remoteTls: schannel
iterations: ${{ parameters.iterations }}
2022-03-10 21:35:36 +03:00
arch: ${{ parameters.arch }}
protocol: ${{ parameters.protocol }}
logProfile: ${{ parameters.logging }}
2022-06-09 15:46:23 +03:00
timeout: ${{ parameters.timeout }}
2022-03-10 21:35:36 +03:00
${{ if ne(parameters.testToRun, 'all') }}:
testToRun: ${{ parameters.testToRun }}
kernelMode: -Kernel
extraName: 'Kernel'
testTypes: 'Remote'
2022-03-10 21:35:36 +03:00
${{ if eq(parameters.pgo_mode, true) }}:
extraArgs: -PGO
failOnRegression: 0
2022-03-10 21:35:36 +03:00
- ${{ if eq(parameters.winuser_schannel, true) }}:
- stage: perf_winuser_schannel
displayName: Performance Testing Windows (Schannel)
dependsOn:
- build_winuser_schannel
jobs:
- template: ./templates/run-performance.yml
parameters:
pool: MsQuic-Win-Perf
platform: windows
localTls: schannel
remoteTls: schannel
iterations: ${{ parameters.iterations }}
2022-03-10 21:35:36 +03:00
arch: ${{ parameters.arch }}
protocol: ${{ parameters.protocol }}
logProfile: ${{ parameters.logging }}
2022-06-09 15:46:23 +03:00
timeout: ${{ parameters.timeout }}
2022-03-10 21:35:36 +03:00
${{ if ne(parameters.testToRun, 'all') }}:
testToRun: ${{ parameters.testToRun }}
2020-08-27 20:42:14 +03:00
testTypes: ${{ parameters.testTypes }}
2022-03-10 21:35:36 +03:00
${{ if eq(parameters.pgo_mode, true) }}:
extraArgs: -PGO
failOnRegression: 0
2022-03-10 21:35:36 +03:00
- ${{ if eq(parameters.winuser_xdp, true) }}:
- stage: perf_winuser_xdp
displayName: Performance Testing Windows (XDP)
dependsOn:
Unify datapath (#3819) * Remove QUIC_USE_RAW_DATAPATH (logic only) * move logic to core side * remove QUIC_USE_RAW_DATAPATH from test * fix googletest version and add last line * replace from flag to function call * fix build error * fix build/test issues * implement CxPlatResolveRoute for normal socket * add Getter of Datapath feature * fix build issues * adopt comments * adopt comment and fix kernel build error * fix kernel build error * more fix for kernel build * Unify datapath * DatapathTest partially work * just unify build of both normal socket and xdp * SOCKET: RAW{...Socket{BASE{addr}}}, DATAPATH: XDP{RAW{DATAPATH*}} <-> DATAPATH{RAW*, BASE{callbacks}} * tmp * add preview_feature flag back * refactoring CxPlatIsRouteReady * fix linux code check * adjust func names * fix comments * fix IsRouteReady and clean ifdef for _KERNEL_MODE * kernel build error * Set RouteResolved for Rx * fix more tests * move global definition in header file * kernel to avoid calling helper function * move QuitTestIsFeatureSupported after RegistrationOpen * supress warning * remove QuitTestIsFeatureSupported from quic_gtest as it doesn't work as expected by dependency of MsQuicLib.Datapath * remove raw feature check as much as possible * ifdef for UseQTIP visibility * tmp * tmp * fix merge side effects * all tests passed * fix tests in msquicplatformtest * fix tcp with duonic * update clog * use xdp v1 * WIP cleanup * refactoring CXPLAT_SEND_DATA * remove mangling and function pointer * remove unnecessary change in test * fix comments * cleanup * move logic to _winuser * use dummy raw datapath for uwp build * dummy raw * remove double free * fix comments * update dummy func * fix perf run for TCP * partially fix comments * fix build error for uwp and remove duplicate variable in raw socket * set socket before start receiving * add dummy to clog * add clog files for dummy * fix dependency for cargo on windows * remove dummy clog files * remove AuxSocket * add pwsh for cargo setup * clog fix * add include dir for cargo * [WIP] fix cargo and qtip * fix clog, qtip, rename private raw functions and cleanup * experiment to avoid write overflow * use Config->Route->DatapathType for data allocation * more strict if conditions * fix comments * fix uwp build * fix clog and artifact name * fix back xdp dependency * Simply build automation * missed one * apply unification to linux and remove QUIC_USE_XDP flag * move types to any platform * add abstruction layer for linux * add clog * add clog dependencies * fix CodeCheck issues * remove xdp specific artifact dir name and always install xdp deps * add docs * More Fixes for XDP in automation (mostly OneBranch) --------- Co-authored-by: Nick Banks <nibanks@microsoft.com>
2023-09-23 22:45:17 +03:00
- build_winuser_schannel
jobs:
- template: ./templates/run-performance.yml
parameters:
pool: MsQuic-Win-Perf
platform: windows
localTls: schannel
remoteTls: schannel
iterations: ${{ parameters.iterations }}
arch: ${{ parameters.arch }}
protocol: ${{ parameters.protocol }}
logProfile: ${{ parameters.logging }}
2022-06-09 15:46:23 +03:00
timeout: ${{ parameters.timeout }}
${{ if eq(parameters.QTIP, true) }}:
Unify datapath (#3819) * Remove QUIC_USE_RAW_DATAPATH (logic only) * move logic to core side * remove QUIC_USE_RAW_DATAPATH from test * fix googletest version and add last line * replace from flag to function call * fix build error * fix build/test issues * implement CxPlatResolveRoute for normal socket * add Getter of Datapath feature * fix build issues * adopt comments * adopt comment and fix kernel build error * fix kernel build error * more fix for kernel build * Unify datapath * DatapathTest partially work * just unify build of both normal socket and xdp * SOCKET: RAW{...Socket{BASE{addr}}}, DATAPATH: XDP{RAW{DATAPATH*}} <-> DATAPATH{RAW*, BASE{callbacks}} * tmp * add preview_feature flag back * refactoring CxPlatIsRouteReady * fix linux code check * adjust func names * fix comments * fix IsRouteReady and clean ifdef for _KERNEL_MODE * kernel build error * Set RouteResolved for Rx * fix more tests * move global definition in header file * kernel to avoid calling helper function * move QuitTestIsFeatureSupported after RegistrationOpen * supress warning * remove QuitTestIsFeatureSupported from quic_gtest as it doesn't work as expected by dependency of MsQuicLib.Datapath * remove raw feature check as much as possible * ifdef for UseQTIP visibility * tmp * tmp * fix merge side effects * all tests passed * fix tests in msquicplatformtest * fix tcp with duonic * update clog * use xdp v1 * WIP cleanup * refactoring CXPLAT_SEND_DATA * remove mangling and function pointer * remove unnecessary change in test * fix comments * cleanup * move logic to _winuser * use dummy raw datapath for uwp build * dummy raw * remove double free * fix comments * update dummy func * fix perf run for TCP * partially fix comments * fix build error for uwp and remove duplicate variable in raw socket * set socket before start receiving * add dummy to clog * add clog files for dummy * fix dependency for cargo on windows * remove dummy clog files * remove AuxSocket * add pwsh for cargo setup * clog fix * add include dir for cargo * [WIP] fix cargo and qtip * fix clog, qtip, rename private raw functions and cleanup * experiment to avoid write overflow * use Config->Route->DatapathType for data allocation * more strict if conditions * fix comments * fix uwp build * fix clog and artifact name * fix back xdp dependency * Simply build automation * missed one * apply unification to linux and remove QUIC_USE_XDP flag * move types to any platform * add abstruction layer for linux * add clog * add clog dependencies * fix CodeCheck issues * remove xdp specific artifact dir name and always install xdp deps * add docs * More Fixes for XDP in automation (mostly OneBranch) --------- Co-authored-by: Nick Banks <nibanks@microsoft.com>
2023-09-23 22:45:17 +03:00
extraTestArgs: -XDP -QTIP
${{ else }}:
Unify datapath (#3819) * Remove QUIC_USE_RAW_DATAPATH (logic only) * move logic to core side * remove QUIC_USE_RAW_DATAPATH from test * fix googletest version and add last line * replace from flag to function call * fix build error * fix build/test issues * implement CxPlatResolveRoute for normal socket * add Getter of Datapath feature * fix build issues * adopt comments * adopt comment and fix kernel build error * fix kernel build error * more fix for kernel build * Unify datapath * DatapathTest partially work * just unify build of both normal socket and xdp * SOCKET: RAW{...Socket{BASE{addr}}}, DATAPATH: XDP{RAW{DATAPATH*}} <-> DATAPATH{RAW*, BASE{callbacks}} * tmp * add preview_feature flag back * refactoring CxPlatIsRouteReady * fix linux code check * adjust func names * fix comments * fix IsRouteReady and clean ifdef for _KERNEL_MODE * kernel build error * Set RouteResolved for Rx * fix more tests * move global definition in header file * kernel to avoid calling helper function * move QuitTestIsFeatureSupported after RegistrationOpen * supress warning * remove QuitTestIsFeatureSupported from quic_gtest as it doesn't work as expected by dependency of MsQuicLib.Datapath * remove raw feature check as much as possible * ifdef for UseQTIP visibility * tmp * tmp * fix merge side effects * all tests passed * fix tests in msquicplatformtest * fix tcp with duonic * update clog * use xdp v1 * WIP cleanup * refactoring CXPLAT_SEND_DATA * remove mangling and function pointer * remove unnecessary change in test * fix comments * cleanup * move logic to _winuser * use dummy raw datapath for uwp build * dummy raw * remove double free * fix comments * update dummy func * fix perf run for TCP * partially fix comments * fix build error for uwp and remove duplicate variable in raw socket * set socket before start receiving * add dummy to clog * add clog files for dummy * fix dependency for cargo on windows * remove dummy clog files * remove AuxSocket * add pwsh for cargo setup * clog fix * add include dir for cargo * [WIP] fix cargo and qtip * fix clog, qtip, rename private raw functions and cleanup * experiment to avoid write overflow * use Config->Route->DatapathType for data allocation * more strict if conditions * fix comments * fix uwp build * fix clog and artifact name * fix back xdp dependency * Simply build automation * missed one * apply unification to linux and remove QUIC_USE_XDP flag * move types to any platform * add abstruction layer for linux * add clog * add clog dependencies * fix CodeCheck issues * remove xdp specific artifact dir name and always install xdp deps * add docs * More Fixes for XDP in automation (mostly OneBranch) --------- Co-authored-by: Nick Banks <nibanks@microsoft.com>
2023-09-23 22:45:17 +03:00
extraTestArgs: -XDP
${{ if ne(parameters.testToRun, 'all') }}:
testToRun: ${{ parameters.testToRun }}
testTypes: Remote
${{ if eq(parameters.pgo_mode, false) }}:
extraArgs: -Publish
${{ if eq(parameters.pgo_mode, true) }}:
extraArgs: -PGO
failOnRegression: 0
2022-03-10 21:35:36 +03:00
- ${{ if eq(parameters.winuser_openssl, true) }}:
- stage: perf_winuser_openssl
displayName: Performance Testing Windows (OpenSSL)
dependsOn:
- build_winuser_openssl
jobs:
- template: ./templates/run-performance.yml
parameters:
pool: MsQuic-Win-Perf
platform: windows
localTls: openssl
remoteTls: openssl
iterations: ${{ parameters.iterations }}
2022-03-10 21:35:36 +03:00
arch: ${{ parameters.arch }}
protocol: ${{ parameters.protocol }}
logProfile: ${{ parameters.logging }}
2022-06-09 15:46:23 +03:00
timeout: ${{ parameters.timeout }}
2022-03-10 21:35:36 +03:00
${{ if ne(parameters.testToRun, 'all') }}:
testToRun: ${{ parameters.testToRun }}
testTypes: ${{ parameters.testTypes }}
${{ if eq(parameters.pgo_mode, true) }}:
extraArgs: -PGO
failOnRegression: 0
2022-03-10 21:35:36 +03:00
2023-02-02 21:43:49 +03:00
- ${{ if eq(parameters.winuser_openssl3, true) }}:
- stage: perf_winuser_openssl3
displayName: Performance Testing Windows (OpenSSL3)
dependsOn:
- build_winuser_openssl3
jobs:
- template: ./templates/run-performance.yml
parameters:
pool: MsQuic-Win-Perf
platform: windows
localTls: openssl3
remoteTls: openssl3
iterations: ${{ parameters.iterations }}
arch: ${{ parameters.arch }}
protocol: ${{ parameters.protocol }}
logProfile: ${{ parameters.logging }}
timeout: ${{ parameters.timeout }}
${{ if ne(parameters.testToRun, 'all') }}:
testToRun: ${{ parameters.testToRun }}
testTypes: ${{ parameters.testTypes }}
${{ if eq(parameters.pgo_mode, true) }}:
extraArgs: -PGO
failOnRegression: 0
2022-03-10 21:35:36 +03:00
- ${{ if eq(parameters.linux_openssl, true) }}:
- stage: perf_linux_openssl
displayName: Performance Testing Linux (OpenSSL)
dependsOn:
- build_linux_openssl
jobs:
- template: ./templates/run-performance.yml
parameters:
pool: MsQuic-Linux-Perf
platform: linux
localTls: openssl
remoteTls: openssl
iterations: ${{ parameters.iterations }}
2022-03-10 21:35:36 +03:00
arch: ${{ parameters.arch }}
protocol: ${{ parameters.protocol }}
logProfile: ${{ parameters.logging }}
2022-06-09 15:46:23 +03:00
timeout: ${{ parameters.timeout }}
2022-03-10 21:35:36 +03:00
${{ if ne(parameters.testToRun, 'all') }}:
testToRun: ${{ parameters.testToRun }}
testTypes: ${{ parameters.testTypes }}
${{ if eq(parameters.pgo_mode, true) }}:
extraArgs: -PGO
failOnRegression: 0
2022-03-10 21:35:36 +03:00
2023-02-02 21:43:49 +03:00
- ${{ if eq(parameters.linux_openssl3, true) }}:
- stage: perf_linux_openssl3
displayName: Performance Testing Linux (OpenSSL3)
dependsOn:
- build_linux_openssl3
jobs:
- template: ./templates/run-performance.yml
parameters:
pool: MsQuic-Linux-Perf
platform: linux
localTls: openssl3
remoteTls: openssl3
iterations: ${{ parameters.iterations }}
arch: ${{ parameters.arch }}
protocol: ${{ parameters.protocol }}
logProfile: ${{ parameters.logging }}
timeout: ${{ parameters.timeout }}
${{ if ne(parameters.testToRun, 'all') }}:
testToRun: ${{ parameters.testToRun }}
testTypes: ${{ parameters.testTypes }}
${{ if eq(parameters.pgo_mode, true) }}:
extraArgs: -PGO
failOnRegression: 0
- ${{ if in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI') }}:
- stage: perf_post_process
displayName: Perf Post Processing
condition: succeededOrFailed()
dependsOn:
- perf_winkernel
- perf_winuser_schannel
- perf_winuser_xdp
- perf_winuser_openssl
2023-02-02 21:43:49 +03:00
- perf_winuser_openssl3
- perf_linux_openssl
2023-02-02 21:43:49 +03:00
- perf_linux_openssl3
jobs:
- template: ./templates/post-process-performance.yml