2018-07-19 12:01:23 +00:00
|
|
|
#!/bin/bash
|
2021-12-30 23:08:43 +00:00
|
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2018-09-07 20:08:05 +00:00
|
|
|
#
|
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
2019-10-16 03:08:07 +00:00
|
|
|
|
2018-05-16 00:25:16 +00:00
|
|
|
# This script should be run from the react-native root
|
2015-03-25 02:34:12 +00:00
|
|
|
|
2022-02-22 10:17:47 +00:00
|
|
|
THIS_DIR=$(cd -P "$(dirname "$(realpath "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
|
2018-05-16 00:25:16 +00:00
|
|
|
source "scripts/.tests.env"
|
2015-03-25 02:34:12 +00:00
|
|
|
|
2018-05-16 00:25:16 +00:00
|
|
|
if [ -n "$1" ]
|
2015-03-26 15:55:30 +00:00
|
|
|
then
|
2018-05-16 00:25:16 +00:00
|
|
|
echo "Overriding..."
|
|
|
|
IOS_TARGET_OS="${1}"
|
|
|
|
SDK="iphonesimulator${1}"
|
|
|
|
DESTINATION="platform=iOS Simulator,OS=${IOS_TARGET_OS},name=${IOS_DEVICE}"
|
2015-03-26 15:55:30 +00:00
|
|
|
fi
|
|
|
|
|
2018-05-16 00:25:16 +00:00
|
|
|
xcodebuild \
|
2020-08-20 00:54:30 +00:00
|
|
|
-workspace "packages/rn-tester/RNTesterPods.xcworkspace" \
|
2018-05-16 00:25:16 +00:00
|
|
|
-scheme $SCHEME \
|
|
|
|
-sdk $SDK \
|
|
|
|
-destination "$DESTINATION" \
|
2015-03-25 02:34:12 +00:00
|
|
|
build test
|