mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
f5130c8073
Summary:See https://github.com/supermarin/xcpretty#usage -- xcpretty will suppress xcodebuild's status code so we need to add `&& exit ${PIPESTATUS[0]}`. Closes https://github.com/facebook/react-native/pull/7172 Differential Revision: D3216731 fb-gh-sync-id: 942fd213105cc365d1d9a9c4d146441c044dd506 fbshipit-source-id: 942fd213105cc365d1d9a9c4d146441c044dd506
37 lines
929 B
Bash
Executable File
37 lines
929 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
SCRIPTS=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
ROOT=$(dirname $SCRIPTS)
|
|
|
|
export REACT_PACKAGER_LOG="$ROOT/server.log"
|
|
|
|
cd $ROOT
|
|
|
|
function cleanup {
|
|
EXIT_CODE=$?
|
|
set +e
|
|
|
|
if [ $EXIT_CODE -ne 0 ];
|
|
then
|
|
WATCHMAN_LOGS=/usr/local/Cellar/watchman/3.1/var/run/watchman/$USER.log
|
|
[ -f $WATCHMAN_LOGS ] && cat $WATCHMAN_LOGS
|
|
|
|
[ -f $REACT_PACKAGER_LOG ] && cat $REACT_PACKAGER_LOG
|
|
fi
|
|
[ $SERVER_PID ] && kill -9 $SERVER_PID
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
./packager/packager.sh --nonPersistent &
|
|
SERVER_PID=$!
|
|
# TODO: We use xcodebuild because xctool would stall when collecting info about
|
|
# the tests before running them. Switch back when this issue with xctool has
|
|
# been resolved.
|
|
xcodebuild \
|
|
-project Examples/UIExplorer/UIExplorer.xcodeproj \
|
|
-scheme UIExplorer -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 5,OS=9.3' \
|
|
test \
|
|
| xcpretty && exit ${PIPESTATUS[0]}
|