Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/feedback_plugin/data_processing/extractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,8 @@ def extract_machine_architecture(upload: dict[str, list[str]]) -> str:
elif re.match('^[ix][3-6]*86$', machine):
# This check must happen after x86_64
machine_architecture = 'x86'
elif re.match('^armv[5-7]', machine):
machine_architecture = 'ARM 32Bit'
elif re.match('^aarch64$', machine):
machine_architecture = 'ARM 64Bit'
elif re.match('^(aarch64|arm64)$', machine):
machine_architecture = 'armv8'
elif re.match('^hp_', machine):
machine_architecture = 'HP Itanium'
elif re.match('^alpha', machine):
Expand Down