Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,12 @@ def download_trusty_symbols_if_needed(symbols_directory, app_name, bid):
"""Downloads and extracts Trusted App ELF files"""
ab_target = ''
device = settings.get_build_parameters().get('target')
if device in ['cheetah', 'panther']:
if 'cheetah' in device or 'panther' in device:
ab_target = 'cloudripper-fuzz-test-debug'
if device in ['oriole', 'raven', 'bluejay']:
elif 'oriole' in device or 'raven' in device or 'bluejay' in device:
ab_target = 'slider-fuzz-test-debug'
else:
logs.error(f'Unsupported device {device}.')

branch = 'polygon-trusty-whitechapel-master'
if not bid:
Expand Down
Loading