mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00
tools: remove armv6 from test tools
CI no longer tests armv6. PR-URL: https://github.com/nodejs/node/pull/39162 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
62321267b0
commit
8703d22c4f
2 changed files with 2 additions and 5 deletions
|
@ -83,9 +83,7 @@ def GuessOS():
|
|||
def GuessArchitecture():
|
||||
id = platform.machine()
|
||||
id = id.lower() # Windows 7 capitalizes 'AMD64'.
|
||||
if id.startswith('armv6'): # Can return 'armv6l'.
|
||||
return 'armv6'
|
||||
elif id.startswith('arm') or id == 'aarch64':
|
||||
if id.startswith('arm') or id == 'aarch64':
|
||||
return 'arm'
|
||||
elif (not id) or (not re.match('(x|i[3-6])86$', id) is None):
|
||||
return 'ia32'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue