mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 11:12:18 +00:00
ed14aa6d51
https://ci.nodejs.org/job/node-test-commit-v8-linux/configure echoes python code into tools and runs it. Move these scripts into tools for better maintainability. Once this lands and is back-ported into LTS branches a bunch of shell code can be deleted from the job. PR-URL: https://github.com/nodejs/node/pull/28458 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
11 lines
293 B
Python
11 lines
293 B
Python
from __future__ import print_function
|
|
from utils import GuessArchitecture
|
|
arch = GuessArchitecture()
|
|
|
|
# assume 64 bit unless set specifically
|
|
print(GuessArchitecture() \
|
|
.replace('ia32', 'x64') \
|
|
.replace('ppc', 'ppc64') \
|
|
.replace('arm', 'arm64') \
|
|
.replace('s390', 's390x'))
|