Browse Source

Update tools.

Change-Id: I290af4599231040887f41c922550bb87dfb98cb0
Reviewed-on: https://boringssl-review.googlesource.com/28746
Commit-Queue: Steven Valdez <svaldez@google.com>
Reviewed-by: Steven Valdez <svaldez@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
kris/onging/CECPQ3_patch15
David Benjamin 6 years ago
committed by CQ bot account: commit-bot@chromium.org
parent
commit
81d4a03bb0
4 changed files with 6 additions and 7 deletions
  1. +2
    -2
      util/bot/DEPS
  2. +1
    -1
      util/bot/go/bootstrap.py
  3. +1
    -1
      util/bot/update_clang.py
  4. +2
    -3
      util/bot/vs_toolchain.py

+ 2
- 2
util/bot/DEPS View File

@@ -22,7 +22,7 @@ vars = {

deps = {
'boringssl/util/bot/android_ndk': {
'url': Var('chromium_git') + '/android_ndk.git' + '@' + '635bc380968a76f6948fee65f80a0b28db53ae81',
'url': Var('chromium_git') + '/android_ndk.git' + '@' + '5cd86312e794bdf542a3685c6f10cbb96072990b',
'condition': 'checkout_android',
},

@@ -35,7 +35,7 @@ deps = {
Var('chromium_git') + '/external/gyp.git' + '@' + 'd61a9397e668fa9843c4aa7da9e79460fe590bfb',

'boringssl/util/bot/libFuzzer': {
'url': Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + 'ba2c1cd6f87accb32b5dbce297387c56a2e53a2f',
'url': Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + 'fda403cf93ecb8792cb1d061564d89a6553ca020',
'condition': 'checkout_fuzzer',
},
}


+ 1
- 1
util/bot/go/bootstrap.py View File

@@ -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.10.1'
TOOLSET_VERSION = 'go1.10.2'

# Platform dependent portion of a download URL. See http://golang.org/dl/.
TOOLSET_VARIANTS = {


+ 1
- 1
util/bot/update_clang.py View File

@@ -19,7 +19,7 @@ import urllib2
# 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 = '328575'
CLANG_REVISION = '332838'
CLANG_SUB_REVISION=1

PACKAGE_VERSION = "%s-%s" % (CLANG_REVISION, CLANG_SUB_REVISION)


+ 2
- 3
util/bot/vs_toolchain.py View File

@@ -87,9 +87,8 @@ def _GetDesiredVsToolchainHashes():
# Update 3 final with 10.0.15063.468 SDK and no vctip.exe.
return ['f53e4598951162bad6330f7a167486c7ae5db1e5']
if env_version == '2017':
# VS 2017 Update 3.2 with 10.0.15063.468 SDK, patched setenv.cmd, and
# 10.0.16299.15 debuggers.
return ['1180cb75833ea365097e279efb2d5d7a42dee4b0']
# VS 2017 Update 7.1 (15.7.1) with 10.0.17134.12 SDK.
return ['5454e45bf3764c03d3fc1024b3bf5bc41e3ab62c']
raise Exception('Unsupported VS version %s' % env_version)




Loading…
Cancel
Save