2015-12-17 20:42:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-12-16 02:02:20 +00:00
|
|
|
set -o pipefail
|
|
|
|
set -e
|
|
|
|
|
|
|
|
while pgrep -q Simulator; do
|
|
|
|
# Kill all the current simulator processes as they may be from a
|
|
|
|
# different Xcode version
|
|
|
|
pkill Simulator 2>/dev/null || true
|
|
|
|
# CoreSimulatorService doesn't exit when sent SIGTERM
|
|
|
|
pkill -9 Simulator 2>/dev/null || true
|
|
|
|
done
|
|
|
|
|
2015-12-17 02:14:14 +00:00
|
|
|
|
2015-12-16 02:02:20 +00:00
|
|
|
DESTINATION="-destination id=$(xcrun simctl list devices | grep -v unavailable | grep -m 1 -o '[0-9A-F\-]\{36\}')"
|
|
|
|
TARGET=$1
|
|
|
|
CONFIGURATION=${2:-"Debug"}
|
2015-12-17 18:56:08 +00:00
|
|
|
PACKAGER_OUT="packager_out.txt"
|
|
|
|
|
|
|
|
function start_packager()
|
|
|
|
{
|
2015-12-17 20:42:02 +00:00
|
|
|
rm -f $PACKAGER_OUT
|
2015-12-18 23:11:23 +00:00
|
|
|
sh ./node_modules/react-native/packager/packager.sh | tee packager_out.txt &
|
2015-12-17 18:56:08 +00:00
|
|
|
while :;
|
|
|
|
do
|
|
|
|
if grep -Fxq "React packager ready." packager_out.txt
|
|
|
|
then
|
|
|
|
break
|
|
|
|
else
|
|
|
|
echo "Waiting for packager."
|
2015-12-17 20:42:02 +00:00
|
|
|
sleep 2
|
2015-12-17 18:56:08 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function kill_packager()
|
|
|
|
{
|
2015-12-17 20:42:02 +00:00
|
|
|
rm -f $PACKAGER_OUT
|
2015-12-17 18:56:08 +00:00
|
|
|
pkill node || true
|
|
|
|
}
|
|
|
|
|
|
|
|
kill_packager
|
2015-12-16 02:02:20 +00:00
|
|
|
|
|
|
|
if [ "$TARGET" = "realmjs" ]; then
|
|
|
|
xcodebuild -scheme RealmJS -configuration "$CONFIGURATION" -sdk iphonesimulator $DESTINATION build test
|
|
|
|
elif [ "$TARGET" = "react-tests" ]; then
|
|
|
|
pushd tests/react-test-app
|
2015-12-18 23:11:23 +00:00
|
|
|
|
2015-12-18 23:54:02 +00:00
|
|
|
if [ -d ~/Applications/Google\ Chrome.app ]; then
|
|
|
|
open ~/Applications/Google\ Chrome.app
|
|
|
|
fi
|
2015-12-18 23:11:23 +00:00
|
|
|
|
2015-12-16 02:18:18 +00:00
|
|
|
if [ -f ../../target=node_modules/react_tests_node_modules.zip ]; then
|
2015-12-17 19:55:29 +00:00
|
|
|
unzip -q ../../target=node_modules/react_tests_node_modules.zip
|
2015-12-16 02:18:18 +00:00
|
|
|
fi
|
2015-12-17 02:14:14 +00:00
|
|
|
npm update react-native
|
2015-12-17 18:56:08 +00:00
|
|
|
start_packager
|
2015-12-16 02:02:20 +00:00
|
|
|
popd
|
|
|
|
|
|
|
|
xcodebuild -scheme RealmReact -configuration "$CONFIGURATION" -sdk iphonesimulator $DESTINATION build test
|
|
|
|
elif [ "$TARGET" = "react-example" ]; then
|
|
|
|
pushd examples/ReactExample
|
2015-12-16 02:18:18 +00:00
|
|
|
if [ -f ../../target=node_modules/react_example_node_modules.zip ]; then
|
2015-12-17 19:55:29 +00:00
|
|
|
unzip -q ../../target=node_modules/react_example_node_modules.zip
|
2015-12-16 02:18:18 +00:00
|
|
|
fi
|
2015-12-17 02:14:14 +00:00
|
|
|
npm update react-native
|
2015-12-17 18:56:08 +00:00
|
|
|
start_packager
|
|
|
|
|
2015-12-16 02:02:20 +00:00
|
|
|
xcodebuild -scheme ReactExample -configuration "$CONFIGURATION" -sdk iphonesimulator build $DESTINATION
|
|
|
|
popd
|
2015-12-17 02:14:14 +00:00
|
|
|
else
|
|
|
|
echo "Invalid target '${TARGET}'"
|
2015-12-16 02:02:20 +00:00
|
|
|
fi
|
|
|
|
|
2015-12-17 18:56:08 +00:00
|
|
|
kill_packager
|
2015-12-16 02:02:20 +00:00
|
|
|
|