my temporary workaround: Add Installer -> Run Shell Command:
NODE_VERSION="v6.2.1" NPM_PACKAGES="[email protected] [email protected] [email protected] [email protected] [email protected]" if [ ! -f ./${NODE_VERSION} ]; then rm -rf ./* # dl & install wget https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.gz tar xzf node-${NODE_VERSION}-linux-x64.tar.gz mv node-${NODE_VERSION}-linux-x64/* . rm -rf node-${NODE_VERSION}-linux-x64* touch ${NODE_VERSION} fi PATH=${PWD}/bin:${PATH} npm -g install ${NPM_PACKAGES} Am Donnerstag, 9. Juni 2016 10:16:39 UTC+2 schrieb Adriano Raiano: > > Does someone have an update for this issue? > https://issues.jenkins-ci.org/browse/JENKINS-34815 > I really need to update to node 6.x on our CI/CD pipeline... > -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/6ef5dae5-587e-49ef-b351-3e0f1cb4d630%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
