We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c9cd91 commit 478ac35Copy full SHA for 478ac35
scripts/ci/build.sh
@@ -10,19 +10,21 @@ curr_dirname=$(dirname "$0")
10
11
. $curr_dirname/utils/gsort.sh
12
13
-FORCE_REBUILD=false
+FORCE_REBUILD_DEFAULT=false
14
# if [[ ! -z "$GIT_TAG" ]]; then
15
-# FORCE_REBUILD=true
+# FORCE_REBUILD_DEFAULT=true
16
# fi
17
18
-export FORCE_REBUILD=$FORCE_REBUILD
+export FORCE_REBUILD=${FORCE_REBUILD:-$FORCE_REBUILD_DEFAULT}
19
20
MACOS_UNIVERSAL_BUILD=${MACOS_UNIVERSAL_BUILD:-}
21
22
echo "Checking python version"
23
python -V || true
24
echo "Checking python3 version"
25
python3 -V || true
26
+echo "Checking nodejs version"
27
+node -e "console.log(process.versions)"
28
29
if [ "$(uname)" == "Darwin" ]; then
30
# Default to universal build, if possible.
0 commit comments