[infra] Update checked-in SDKs to 2.10.0-110.3.beta

This also switches the checked-in SDKs on Windows to x64.

Cq-Include-Trybots: luci.dart.try:vm-kernel-win-release-ia32-try
Change-Id: Ie1c96cefd2ef3d1a06e6ed675e5eb8fe72f3e33d
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/163343
Commit-Queue: Alexander Thomas <athom@google.com>
Reviewed-by: William Hesse <whesse@google.com>
This commit is contained in:
Alexander Thomas 2020-09-18 11:35:55 +00:00 committed by commit-bot@chromium.org
parent 9ad182a528
commit be0fd91134
3 changed files with 5 additions and 17 deletions

2
DEPS
View file

@ -39,7 +39,7 @@ vars = {
# Checked-in SDK version. The checked-in SDK is a Dart SDK distribution in a
# cipd package used to run Dart scripts in the build and test infrastructure.
"sdk_tag": "version:2.10.0-79.0.dev",
"sdk_tag": "version:2.10.0-110.3.beta",
# co19 is a cipd package. Use update.sh in tests/co19[_2] to update these
# hashes. It requires access to the dart-build-access group, which EngProd

View file

@ -3,9 +3,8 @@ observatory and to run the test scripts.
The DEPS use CIPD's ${platform} syntax find the right SDK for the platform.
We are currently using the 32-bit ia32 build as the default on Windows, and the
64-bit x64 build as the default on Linux and Mac. arm and arm64 CIPD packages
are used on Linux.
We use the x64 build as the default on Linux, Mac and Windows. Builds for Linux
on ARM and ARM64 are also provided.
To upload new versions of these CIPD packages, run "./update.sh" in this
directory. Because these SDKs are used for the presubmit dartfmt check on

View file

@ -61,9 +61,8 @@ cipd create \
-ref $channel
rm -rf sdk
# We currently use the ia32 SDK on x64 Windows as well, see also README.
gsutil.py cp "gs://dart-archive/channels/$channel/release/$1/sdk/dartsdk-windows-ia32-release.zip" .
unzip -q dartsdk-windows-ia32-release.zip -d sdk
gsutil.py cp "gs://dart-archive/channels/$channel/release/$1/sdk/dartsdk-windows-x64-release.zip" .
unzip -q dartsdk-windows-x64-release.zip -d sdk
cipd create \
-name dart/dart-sdk/windows-amd64 \
-in sdk \
@ -72,16 +71,6 @@ cipd create \
-ref $channel
rm -rf sdk
gsutil.py cp "gs://dart-archive/channels/$channel/release/$1/sdk/dartsdk-windows-ia32-release.zip" .
unzip -q dartsdk-windows-ia32-release.zip -d sdk
cipd create \
-name dart/dart-sdk/windows-386 \
-in sdk \
-install-mode copy \
-tag version:$1 \
-ref $channel
rm -rf sdk
popd
gclient setdep --var="sdk_tag=version:$1"