Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 73675e5

Browse files
author
Victor "Nate" Graf
authored
Change perf job labels to reflect the actual OS they run on (#15361)
1 parent 5d14057 commit 73675e5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

perf.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def static getFullPerfJobName(def project, def os, def isPR) {
264264
}
265265

266266
// Actual perf testing on the following OSes
267-
def perfOSList = ['Ubuntu14.04']
267+
def perfOSList = ['Ubuntu16.04']
268268
perfOSList.each { os ->
269269
def newJob = job(getFullPerfJobName(project, os, isPR)) {
270270

@@ -403,7 +403,7 @@ def static getFullThroughputJobName(def project, def os, def isPR) {
403403
}
404404

405405
// Actual perf testing on the following OSes
406-
def throughputOSList = ['Ubuntu14.04']
406+
def throughputOSList = ['Ubuntu16.04']
407407
def throughputOptLevelList = ['full_opt', 'min_opt']
408408

409409
def throughputOSOptLevelList = []

tests/scripts/run-throughput-perf.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161

6262
os_group_list = {
6363
'Windows_NT': 'Windows_NT',
64-
'Ubuntu14.04': 'Linux'
64+
'Ubuntu14.04': 'Linux',
65+
'Ubuntu16.04': 'Linux'
6566
}
6667

6768
python_exe_list = {
@@ -132,7 +133,7 @@ def validate_arg(arg, check):
132133
valid_archs = {'Windows_NT': ['x86', 'x64'], 'Linux': ['x64']}
133134
valid_build_types = ['Release']
134135
valid_run_types = ['rolling', 'private']
135-
valid_os = ['Windows_NT', 'Ubuntu14.04']
136+
valid_os = ['Windows_NT', 'Ubuntu14.04', 'Ubuntu16.04']
136137
valid_opt_levels = ['full_opt', 'min_opt']
137138

138139
arch = next((a for a in valid_archs if a.lower() == arch.lower()), arch)

0 commit comments

Comments
 (0)