Skip to content

Commit

Permalink
checkmicroarchitecture: IPU 9 -> 10: report URL for x86_64-v3
Browse files Browse the repository at this point in the history
We have a shortened link for x86_64-v2 for IPU 8 -> 9. Adding
link for x86_64-v3 for IPU 9 -> 10:
    https://red.ht/rhel-10-intel-microarchitectures
  • Loading branch information
pirat89 committed Feb 10, 2025
1 parent 737b3b4 commit 87b1d49
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,18 @@ def process():
url='https://red.ht/rhel-9-intel-microarchitectures'
)

rhel10_microarch_article = reporting.ExternalLink(
title='Building Red Hat Enterprise Linux 10 for the x86-64-v3 microarchitecture level',
url='https://red.ht/rhel-10-intel-microarchitectures'
)

rhel_major_to_microarch_reqs = {
'9': MicroarchInfo(microarch_ver='x86-64-v2',
required_flags=(X86_64_BASELINE_FLAGS + X86_64_V2_FLAGS),
extra_report_fields=[rhel9_microarch_article]),
'10': MicroarchInfo(microarch_ver='x86-64-v3',
required_flags=(X86_64_BASELINE_FLAGS + X86_64_V2_FLAGS + X86_64_V3_FLAGS),
extra_report_fields=[]),
extra_report_fields=[rhel10_microarch_article]),
}

microarch_info = rhel_major_to_microarch_reqs.get(get_target_major_version())
Expand Down

0 comments on commit 87b1d49

Please sign in to comment.