Commit 7c16a240 authored by chenwilliam's avatar chenwilliam Committed by Commit bot

DevTools: Bump node.js version for buildbot

I uploaded the latest LTS node.js version to a google storage bucket
and updated the buildbot/node.py script.

Hopefully since this is LTS, we won't need to bump this node version too often.

BUG=642046

Review-Url: https://codereview.chromium.org/2303273003
Cr-Commit-Position: refs/heads/master@{#416396}
parent e5cc6b1b
......@@ -13,8 +13,8 @@ import urllib2
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
DEFAULT_VERSION = '0.12.2'
BUCKET = 'chromium-infra-bins'
DEFAULT_VERSION = '4.5.0'
BUCKET = 'chromium-nodejs'
def install_latest_node_js(version, tmp_dir):
......@@ -46,7 +46,7 @@ def install_latest_node_js(version, tmp_dir):
raise Exception('Unrecognized platform %s' % sys.platform)
dest = os.path.join(tmp_dir, 'node_download')
url = 'https://storage.googleapis.com/%s/node/%s/%s' % (
url = 'https://storage.googleapis.com/%s/%s/%s' % (
BUCKET, version, target)
print('Fetching %s' % url)
u = urllib2.urlopen(url)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment