react-native-macos/runXcodeTests.sh

21 строка
441 B
Bash
Исходник Обычный вид История

2015-03-25 05:34:12 +03:00
#!/bin/sh
# This script should be run from the react-native root
2015-03-25 05:34:12 +03:00
THIS_DIR=$(dirname "$0")
source "scripts/.tests.env"
2015-03-25 05:34:12 +03:00
if [ -n "$1" ]
then
echo "Overriding..."
IOS_TARGET_OS="${1}"
SDK="iphonesimulator${1}"
DESTINATION="platform=iOS Simulator,OS=${IOS_TARGET_OS},name=${IOS_DEVICE}"
fi
xcodebuild \
-project "RNTester/RNTester.xcodeproj" \
-scheme $SCHEME \
-sdk $SDK \
-destination "$DESTINATION" \
2015-03-25 05:34:12 +03:00
build test