Apple TV support 2: Xcode projects and CI (scripts/objc-test.sh)

Summary:
* Motivation *

Second PR for Apple TV support.

* Test plan *

Apple TV tests have been added to scripts/objc-test.sh
Closes https://github.com/facebook/react-native/pull/10227

Differential Revision: D3974064

Pulled By: javache

fbshipit-source-id: 36dffb4517efa489e40fa713a30655d1d76ef646
This commit is contained in:
Douglas Lowder 2016-10-05 07:15:25 -07:00 committed by Facebook Github Bot
parent 92fb9957b4
commit 3f443f4778
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ case "$CONFIGURATION" in
Debug) Debug)
# Speed up build times by skipping the creation of the offline package for debug # Speed up build times by skipping the creation of the offline package for debug
# builds on the simulator since the packager is supposed to be running anyways. # builds on the simulator since the packager is supposed to be running anyways.
if [[ "$PLATFORM_NAME" = "iphonesimulator" ]]; then if [[ "$PLATFORM_NAME" == *simulator ]]; then
echo "Skipping bundling for Simulator platform" echo "Skipping bundling for Simulator platform"
exit 0; exit 0;
fi fi
@ -71,7 +71,7 @@ type $NODE_BINARY >/dev/null 2>&1 || nodejs_not_found
set -x set -x
DEST=$CONFIGURATION_BUILD_DIR/$UNLOCALIZED_RESOURCES_FOLDER_PATH DEST=$CONFIGURATION_BUILD_DIR/$UNLOCALIZED_RESOURCES_FOLDER_PATH
if [[ "$CONFIGURATION" = "Debug" && "$PLATFORM_NAME" != "iphonesimulator" ]]; then if [[ "$CONFIGURATION" = "Debug" && ! "$PLATFORM_NAME" == *simulator ]]; then
PLISTBUDDY='/usr/libexec/PlistBuddy' PLISTBUDDY='/usr/libexec/PlistBuddy'
PLIST=$TARGET_BUILD_DIR/$INFOPLIST_PATH PLIST=$TARGET_BUILD_DIR/$INFOPLIST_PATH
IP=$(ipconfig getifaddr en0) IP=$(ipconfig getifaddr en0)