Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
tools: move python code out of jenkins shell
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: #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>
  • Loading branch information
sam-github authored and MylesBorins committed Dec 17, 2019
1 parent 4879b80 commit 4ae8d20
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tools/getarch.py
@@ -0,0 +1,10 @@
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'))
4 changes: 4 additions & 0 deletions tools/getendian.py
@@ -0,0 +1,4 @@
from __future__ import print_function
import sys
# "little" or "big"
print(sys.byteorder)
3 changes: 3 additions & 0 deletions tools/getmachine.py
@@ -0,0 +1,3 @@
from __future__ import print_function
import platform
print(platform.machine())
1 change: 1 addition & 0 deletions tools/getnodeversion.py
@@ -1,3 +1,4 @@
from __future__ import print_function
import os
import re

Expand Down

0 comments on commit 4ae8d20

Please sign in to comment.