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
It was found in a few PRs that NPM installations on Node.js v17, ppc64le Travis CI pipelines were consistently failing with the same error. Switching between Ubuntu 16.04 and 18.04, nor did re-running the build at a later time resolve the issue.
$ NODEJS_VERSION=$(node --version)
if [ 'v10' = ${NODEJS_VERSION%%.*} ]
then
npm install --global npm@7
else
npm install --global npm@8
fi
npm ERR! code ENETUNREACH
npm ERR! syscall connect
npm ERR! errno ENETUNREACH
npm ERR! request to https://registry.npmjs.org/npm failed, reason: connect ENETUNREACH 2606:4700::6810:1323:443
npm ERR! A complete log of this run can be found in:
npm ERR! /home/travis/.npm/_logs/2021-11-21T04_50_26_698Z-debug.log
The command "NODEJS_VERSION=$(node --version)
if [ 'v10' = ${NODEJS_VERSION%%.*} ]
then
npm install --global npm@7
else
npm install --global npm@8
fi
" failed and exited with 1 during .
Your build has been stopped.
The text was updated successfully, but these errors were encountered:
It was found in a few PRs that NPM installations on Node.js v17, ppc64le Travis CI pipelines were consistently failing with the same error. Switching between Ubuntu 16.04 and 18.04, nor did re-running the build at a later time resolve the issue.
Problematic PRs:
Error snippet
The text was updated successfully, but these errors were encountered: