Pick up a VS 2022 toolchain from Chromium

Nothing uses it yet, but this makes it available for any CI builders
that set vs_version to 2022.

Bug: 569
Change-Id: I7058157182f3e7762a35f8138977f37d56d65094
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/57648
Reviewed-by: Bob Beck <bbe@google.com>
Commit-Queue: David Benjamin <davidben@google.com>
fips-20230428
David Benjamin 2 years ago committed by Boringssl LUCI CQ
parent 55902f24e8
commit b3c2c756ae
  1. 3
      util/bot/vs_toolchain.py

@ -71,6 +71,9 @@ def _GetDesiredVsToolchainHashes(version):
# VS 2019 16.61 with 10.0.20348.0 SDK, 10.0.22621.755 version of Debuggers,
# with ARM64 libraries and UWP support.
return ['0b5ee4d2b1']
if version == '2022':
# VS 2022 17.4 with 10.0.22621.0 SDK with ARM64 libraries and UWP support.
return ['27370823e7']
raise Exception('Unsupported VS version %s' % version)

Loading…
Cancel
Save