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

Commit 1a62b23

Browse files
author
Victor "Nate" Graf
authored
Change name to perf jobs to reflect the actual OS they run on (#15314)
* Change name fo perf jobs to reflect the actual OS they run on * readd Ubuntu 14.04
1 parent 030af0a commit 1a62b23

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

buildpipeline/perf-pipeline.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,13 +365,13 @@ if (!isPR()) {
365365
['pgo', 'nopgo'].each { pgo_enabled ->
366366
outerLoopTests["linux ${arch} ryujit ${opt_level} ${pgo_enabled} perf"] = {
367367
simpleNode('ubuntu_1604_clr_perf', 180) {
368-
linuxPerf(arch, 'Ubuntu14.04', config, uploadString, runType, opt_level, pgo_enabled, false)
368+
linuxPerf(arch, 'Ubuntu16.04', config, uploadString, runType, opt_level, pgo_enabled, false)
369369
}
370370
}
371371

372372
outerLoopTests["linux ${arch} ryujit ${opt_level} ${pgo_enabled} throughput"] = {
373373
simpleNode('ubuntu_1604_clr_perf', 180) {
374-
linuxThroughput(arch, 'Ubuntu14.04', config, uploadString, runType, opt_level, pgo_enabled, false)
374+
linuxThroughput(arch, 'Ubuntu16.04', config, uploadString, runType, opt_level, pgo_enabled, false)
375375
}
376376
}
377377
}

perf.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def static getFullPerfJobName(def project, def os, def isPR) {
267267

268268

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

tests/scripts/run-throughput-perf.py

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

9494
os_group_list = {
9595
'Windows_NT': 'Windows_NT',
96-
'Ubuntu14.04': 'Linux'
96+
'Ubuntu14.04': 'Linux',
97+
'Ubuntu16.04': 'Linux'
9798
}
9899

99100
python_exe_list = {
@@ -168,7 +169,7 @@ def validate_arg(arg, check):
168169
valid_archs = {'Windows_NT': ['x86', 'x64'], 'Linux': ['x64']}
169170
valid_build_types = ['Release']
170171
valid_run_types = ['rolling', 'private']
171-
valid_os = ['Windows_NT', 'Ubuntu14.04']
172+
valid_os = ['Windows_NT', 'Ubuntu14.04', 'Ubuntu16.04']
172173
valid_opt_levels = ['full_opt', 'min_opt']
173174
valid_jit_names = {'x64': ['ryujit'], 'x86': ['ryujit', 'legacy_backend']}
174175

0 commit comments

Comments
 (0)