mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
80 lines
2.6 KiB
Bash
Executable File
80 lines
2.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2014 The Flutter 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
|
|
|
|
function script_location() {
|
|
local script_location="${BASH_SOURCE[0]}"
|
|
# Resolve symlinks
|
|
while [[ -h "$script_location" ]]; do
|
|
DIR="$(cd -P "$(dirname "$script_location")" >/dev/null && pwd)"
|
|
script_location="$(readlink "$script_location")"
|
|
[[ "$script_location" != /* ]] && script_location="$DIR/$script_location"
|
|
done
|
|
echo "$(cd -P "$(dirname "$script_location")" >/dev/null && pwd)"
|
|
}
|
|
|
|
# So that users can run this script locally from any directory and it will work as
|
|
# expected.
|
|
SCRIPT_LOCATION="$(script_location)"
|
|
FLUTTER_ROOT="$(dirname "$(dirname "$SCRIPT_LOCATION")")"
|
|
export PATH="$FLUTTER_ROOT/bin:$FLUTTER_ROOT/bin/cache/dart-sdk/bin:$PATH"
|
|
|
|
set -x
|
|
|
|
cd "$FLUTTER_ROOT"
|
|
|
|
version="$(<version)"
|
|
if [[ "$OS" == "linux" ]]; then
|
|
echo "Building Flutter Gallery $version for Android..."
|
|
export BUNDLE_GEMFILE="$FLUTTER_ROOT/dev/ci/docker_linux/Gemfile"
|
|
# ANDROID_SDK_ROOT must be set in the env.
|
|
(
|
|
cd dev/integration_tests/flutter_gallery
|
|
flutter build apk --release -t lib/main_publish.dart
|
|
)
|
|
elif [[ "$OS" == "darwin" ]]; then
|
|
echo "Building Flutter Gallery $version for iOS..."
|
|
export BUNDLE_GEMFILE="$FLUTTER_ROOT/dev/ci/mac/Gemfile"
|
|
(
|
|
cd dev/integration_tests/flutter_gallery
|
|
flutter build ios --release --no-codesign -t lib/main_publish.dart
|
|
|
|
# flutter build ios will run CocoaPods script. Check generated locations.
|
|
if [[ ! -d "ios/Pods" ]]; then
|
|
echo "Error: pod install failed to setup plugins"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -d "ios/.symlinks/plugins" ]]; then
|
|
echo "Error: pod install failed to setup plugin symlinks"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -d "ios/.symlinks/flutter" ]]; then
|
|
echo "Error: pod install created flutter symlink"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -d "build/ios/iphoneos/Flutter Gallery.app/Frameworks/App.framework/flutter_assets" ]]; then
|
|
echo "Error: flutter_assets not assembled"
|
|
exit 1
|
|
fi
|
|
|
|
if [[
|
|
-d "build/ios/iphoneos/Flutter Gallery.app/Frameworks/App.framework/flutter_assets/isolate_snapshot_data" ||
|
|
-d "build/ios/iphoneos/Flutter Gallery.app/Frameworks/App.framework/flutter_assets/kernel_blob.bin" ||
|
|
-d "build/ios/iphoneos/Flutter Gallery.app/Frameworks/App.framework/flutter_assets/vm_snapshot_data"
|
|
]]; then
|
|
echo "Error: compiled debug version of app with --release flag"
|
|
exit 1
|
|
fi
|
|
)
|
|
else
|
|
echo "Unknown OS: $OS"
|
|
echo "Aborted."
|
|
exit 1
|
|
fi
|