Bug 1658079 Disable resource-monitor support for aarch64 workers r=mtabara

Differential Revision: https://phabricator.services.mozilla.com/D86525
This commit is contained in:
Simon Fraser 2020-08-10 12:49:08 +00:00
Родитель 3befe6d707
Коммит 6f3132e158
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -172,7 +172,12 @@ def add_resource_monitor(config, jobs):
)
# Normalise worker os so that linux-bitbar and similar use linux tools.
worker_os = worker_os.split('-')[0]
if 'win7' in job["worker-type"]:
# We don't currently support an Arm worker, due to gopsutil's indirect
# dependencies (go-ole)
if 'aarch64' in job["worker-type"]:
yield job
continue
elif 'win7' in job["worker-type"]:
arch = '32'
else:
arch = '64'