mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
13 lines
351 B
Bash
Executable File
13 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
pushd flutterapp
|
|
../../../../bin/flutter build ios --debug --no-codesign -v
|
|
popd
|
|
|
|
pod install
|
|
os_version=$(xcrun --show-sdk-version --sdk iphonesimulator)
|
|
xcodebuild -workspace ios_add2app.xcworkspace -scheme ios_add2appTests -sdk "iphonesimulator$os_version" -destination "OS=$os_version,name=iPhone X" test |