From 517f9d8fe0ffb433677b51020420e7e95433a65a Mon Sep 17 00:00:00 2001 From: Randy Stauner Date: Sat, 11 May 2024 11:00:33 -0700 Subject: [PATCH] Add current version to YJIT description for main graphs --- lib/yjit-metrics/report_types/bloggable_speed_report.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/yjit-metrics/report_types/bloggable_speed_report.rb b/lib/yjit-metrics/report_types/bloggable_speed_report.rb index 14650d658..1968c1f92 100644 --- a/lib/yjit-metrics/report_types/bloggable_speed_report.rb +++ b/lib/yjit-metrics/report_types/bloggable_speed_report.rb @@ -54,10 +54,11 @@ def look_up_data_by_ruby(only_platforms: YJITMetrics::PLATFORMS, in_runs: false) @configs_with_human_names = [ ["No JIT", @no_jit_config], ] + # TODO: get the ruby version from the description in the metadata @configs_with_human_names.push(["MJIT3.0", @with_mjit30_config]) if @with_mjit30_config @configs_with_human_names.push(["MJIT", @with_mjit_latest_config]) if @with_mjit_latest_config @configs_with_human_names.push(["YJIT 3.3", @with_prev_yjit_config]) if @with_prev_yjit_config - @configs_with_human_names.push(["YJIT", @with_yjit_config]) + @configs_with_human_names.push(["YJIT 3.4dev", @with_yjit_config]) @configs_with_human_names.push(["Truffle", @truffle_config]) if @truffle_config # Grab relevant data from the ResultSet