
Downloading these packages from cloud storage simplifies our deployment story because we can upload to cloud storage automatically from the buildbot. This patch also switches the responsibility for downloading the engine artifacts to update_engine.sh. Centralizing this responsibility ensures that the packages and the binaries are always in sync.
41 lines
1.3 KiB
Bash
Executable File
41 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
set -e
|
|
|
|
FLUTTER_ROOT=$(dirname $(dirname $(dirname "${BASH_SOURCE[0]}")))
|
|
|
|
DART_SDK_PATH="$FLUTTER_ROOT/bin/cache/dart-sdk"
|
|
DART_SDK_STAMP_PATH="$FLUTTER_ROOT/bin/cache/dart-sdk.stamp"
|
|
DART_SDK_VERSION=`cat "$FLUTTER_ROOT/bin/cache/dart-sdk.version"`
|
|
|
|
if [ ! -f "$DART_SDK_STAMP_PATH" ] || [ "$DART_SDK_VERSION" != `cat "$DART_SDK_STAMP_PATH"` ]; then
|
|
echo "Downloading Dart SDK $DART_SDK_VERSION..."
|
|
|
|
case "$(uname -s)" in
|
|
Darwin)
|
|
DART_ZIP_NAME="dartsdk-macos-x64-release.zip"
|
|
;;
|
|
Linux)
|
|
DART_ZIP_NAME="dartsdk-linux-x64-release.zip"
|
|
;;
|
|
*)
|
|
echo "Unknown operating system. Cannot install Dart SDK."
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
DART_SDK_URL="http://gsdview.appspot.com/dart-archive/channels/stable/raw/$DART_SDK_VERSION/sdk/$DART_ZIP_NAME"
|
|
|
|
rm -rf -- "$DART_SDK_PATH"
|
|
mkdir -p -- "$DART_SDK_PATH"
|
|
DART_SDK_ZIP="$FLUTTER_ROOT/bin/cache/dart-sdk.zip"
|
|
|
|
curl --progress-bar -continue-at=- --location --output "$DART_SDK_ZIP" "$DART_SDK_URL"
|
|
unzip -o -q "$DART_SDK_ZIP" -d "$FLUTTER_ROOT/bin/cache"
|
|
rm -f -- "$DART_SDK_ZIP"
|
|
echo "$DART_SDK_VERSION" > "$DART_SDK_STAMP_PATH"
|
|
fi
|