From 9e7efdb008f98c0e311af37ee7193de4e54dcf75 Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Mon, 2 May 2016 13:03:34 -0400 Subject: [PATCH] Update the various pinned revisions in util/bot. See util/bot/UPDATING for where they come from. Change-Id: Ib2eae6efc737dd8c4e5fb001fd4b478102e0ad6a Reviewed-on: https://boringssl-review.googlesource.com/7822 Reviewed-by: Steven Valdez Reviewed-by: David Benjamin --- util/bot/DEPS | 2 +- util/bot/go/bootstrap.py | 2 +- util/bot/update_clang.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/util/bot/DEPS b/util/bot/DEPS index 0a4de211..862c93a2 100644 --- a/util/bot/DEPS +++ b/util/bot/DEPS @@ -18,7 +18,7 @@ vars = { deps = { 'boringssl/util/bot/gyp': - Var('chromium_git') + '/external/gyp.git' + '@' + '61259d585ce99d9de8b35188cd0025bdbcb58411', + Var('chromium_git') + '/external/gyp.git' + '@' + '4cf07e8d616739f6484e46c9359b2a35196b2585', } hooks = [ diff --git a/util/bot/go/bootstrap.py b/util/bot/go/bootstrap.py index 28aa13da..8d08cc32 100755 --- a/util/bot/go/bootstrap.py +++ b/util/bot/go/bootstrap.py @@ -45,7 +45,7 @@ WORKSPACE = os.path.join(ROOT, 'go') EXE_SFX = '.exe' if sys.platform == 'win32' else '' # Pinned version of Go toolset to download. -TOOLSET_VERSION = 'go1.6' +TOOLSET_VERSION = 'go1.6.2' # Platform dependent portion of a download URL. See http://golang.org/dl/. TOOLSET_VARIANTS = { diff --git a/util/bot/update_clang.py b/util/bot/update_clang.py index 48d0d9bb..e48a2871 100644 --- a/util/bot/update_clang.py +++ b/util/bot/update_clang.py @@ -22,7 +22,7 @@ import urllib # CLANG_REVISION and CLANG_SUB_REVISION determine the build of clang # to use. These should be synced with tools/clang/scripts/update.py in # Chromium. -CLANG_REVISION = "261368" +CLANG_REVISION = "267383" CLANG_SUB_REVISION = "1" PACKAGE_VERSION = "%s-%s" % (CLANG_REVISION, CLANG_SUB_REVISION)