Merge pull request #16680 from edx/ari/node-8

Upgrade Jenkins Node version to 8.9.3
This commit is contained in:
Ari Rizzitano
2018-01-23 10:32:32 -05:00
committed by GitHub

View File

@@ -5,7 +5,7 @@ set -e
source $HOME/jenkins_env
NODE_ENV_DIR=$HOME/nenv
NODE_VERSION=6.11.1
NODE_VERSION=8.9.3
NODE_INSTALL_COMMAND="nodeenv --node=$NODE_VERSION --prebuilt $NODE_ENV_DIR --force"
@@ -57,13 +57,6 @@ echo "done setting up nodeenv"
echo "node version is `node --version`"
echo "npm version is `npm --version`"
# TODO: Provide a cached node_modules/ directory for faster/smaller installs
# Manage the npm cache on Jenkins.
# (In this case, remove it. That ensures from run-to-run, it is a clean npm environment)
echo "--> Cleaning npm cache"
npm cache clean
# Log any paver or ansible command timing
TIMESTAMP=$(date +%s)
export PAVER_TIMER_LOG="test_root/log/timing.paver.$TIMESTAMP.log"