You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"Setting compiler for Node version $NODEJS_MAJOR_VERSION on arm64"
case$nodesin
centos7-arm64-gcc8 )
. /opt/rh/devtoolset-8/enable
echo"Compiler set to devtoolset-8"
;;
centos[67]-arm64-gcc6 )
. /opt/rh/devtoolset-6/enable
echo"Compiler set to devtoolset-6"
;;
esac
fi
, it has this in its configure:
else
if [[ "$nodes" =~ centos[67]-(arm)?64-gcc8 ]]; then
# temporary mesure to evaluate https://github.com/nodejs/node/issues/23913
# REMOVEME at some point, see #23913 (RV, 22-10-19)
# export CONFIG_FLAGS="$CONFIG_FLAGS --openssl-no-asm"
exec_cmd=". /opt/rh/devtoolset-8/enable; $exec_cmd"
fi
if [[ "$nodes" =~ centos[67]-(arm)?64-gcc6 ]]; then
# temporary mesure to evaluate https://github.com/nodejs/node/issues/23913
# REMOVEME at some point, see #23913 (RV, 22-10-19)
# export CONFIG_FLAGS="$CONFIG_FLAGS --openssl-no-asm"
exec_cmd=". /opt/rh/devtoolset-6/enable; $exec_cmd"
fi
eval $exec_cmd
fi
It should use select-compiler.sh
The text was updated successfully, but these errors were encountered:
This issue is stale because it has been open many days with no activity. It will be closed soon unless the stale label is removed or a comment is made.
https://ci.nodejs.org/job/node-test-commit-arm doesn't use
build/jenkins/scripts/select-compiler.sh
Lines 186 to 201 in a042232
It should use select-compiler.sh
The text was updated successfully, but these errors were encountered: