react-native-macos/runXcodeTests.sh

19 строки
348 B
Bash
Исходник Обычный вид История

2015-03-25 05:34:12 +03:00
#!/bin/sh
# Run from react-native root
set -e
if [ -z "$1" ]
then
2015-03-26 19:16:55 +03:00
echo "You must supply an OS version as the first arg, e.g. 8.1"
exit 255
fi
2015-03-25 05:34:12 +03:00
xctool \
-project Examples/UIExplorer/UIExplorer.xcodeproj \
-scheme UIExplorer \
-sdk iphonesimulator${1} \
2015-03-25 05:34:12 +03:00
-destination "platform=iOS Simulator,OS=${1},name=iPhone 5" \
build test