2015-12-17 12:42:02 -08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-12-15 18:02:20 -08: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-16 18:14:14 -08:00
|
|
|
|
2015-12-15 18:02:20 -08: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 10:56:08 -08:00
|
|
|
PACKAGER_OUT="packager_out.txt"
|
|
|
|
|
|
|
|
function start_packager()
|
|
|
|
{
|
2015-12-17 12:42:02 -08:00
|
|
|
rm -f $PACKAGER_OUT
|
2015-12-17 11:55:29 -08:00
|
|
|
sh ./node_modules/react-native/packager/packager.sh > packager_out.txt &
|
2015-12-17 10:56:08 -08:00
|
|
|
while :;
|
|
|
|
do
|
|
|
|
if grep -Fxq "React packager ready." packager_out.txt
|
|
|
|
then
|
|
|
|
break
|
|
|
|
else
|
|
|
|
echo "Waiting for packager."
|
2015-12-17 12:42:02 -08:00
|
|
|
sleep 2
|
2015-12-17 10:56:08 -08:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
function kill_packager()
|
|
|
|
{
|
2015-12-17 12:42:02 -08:00
|
|
|
rm -f $PACKAGER_OUT
|
2015-12-17 10:56:08 -08:00
|
|
|
pkill node || true
|
|
|
|
}
|
|
|
|
|
|
|
|
kill_packager
|
2015-12-15 18:02:20 -08: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-15 18:18:18 -08:00
|
|
|
if [ -f ../../target=node_modules/react_tests_node_modules.zip ]; then
|
2015-12-17 11:55:29 -08:00
|
|
|
unzip -q ../../target=node_modules/react_tests_node_modules.zip
|
2015-12-15 18:18:18 -08:00
|
|
|
fi
|
2015-12-16 18:14:14 -08:00
|
|
|
npm update react-native
|
2015-12-17 10:56:08 -08:00
|
|
|
start_packager
|
2015-12-15 18:02:20 -08:00
|
|
|
popd
|
|
|
|
|
|
|
|
xcodebuild -scheme RealmReact -configuration "$CONFIGURATION" -sdk iphonesimulator $DESTINATION build test
|
|
|
|
elif [ "$TARGET" = "react-example" ]; then
|
|
|
|
pushd examples/ReactExample
|
2015-12-15 18:18:18 -08:00
|
|
|
if [ -f ../../target=node_modules/react_example_node_modules.zip ]; then
|
2015-12-17 11:55:29 -08:00
|
|
|
unzip -q ../../target=node_modules/react_example_node_modules.zip
|
2015-12-15 18:18:18 -08:00
|
|
|
fi
|
2015-12-16 18:14:14 -08:00
|
|
|
npm update react-native
|
2015-12-17 10:56:08 -08:00
|
|
|
start_packager
|
|
|
|
|
2015-12-15 18:02:20 -08:00
|
|
|
xcodebuild -scheme ReactExample -configuration "$CONFIGURATION" -sdk iphonesimulator build $DESTINATION
|
|
|
|
popd
|
2015-12-16 18:14:14 -08:00
|
|
|
else
|
|
|
|
echo "Invalid target '${TARGET}'"
|
2015-12-15 18:02:20 -08:00
|
|
|
fi
|
|
|
|
|
2015-12-17 10:56:08 -08:00
|
|
|
kill_packager
|
2015-12-15 18:02:20 -08:00
|
|
|
|