mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
92190727d1
Summary: **Motivation** Remove duplicated lines in objc-test-ios.sh and objc-test-tvos.sh **Test plan** Travis CI should continue to work as before. Closes https://github.com/facebook/react-native/pull/13173 Differential Revision: D4812177 Pulled By: hramos fbshipit-source-id: 40afe0beab896d741f607f4841df7e9b42f4c17d
17 lines
319 B
Bash
Executable File
17 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
SCRIPTS=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
ROOT=$(dirname "$SCRIPTS")
|
|
|
|
cd "$ROOT"
|
|
|
|
SCHEME="UIExplorer-tvOS"
|
|
SDK="appletvsimulator"
|
|
DESTINATION="platform=tvOS Simulator,name=Apple TV 1080p,OS=10.1"
|
|
# Uncomment the line below to enable tvOS testing
|
|
#TEST="test"
|
|
|
|
. ./scripts/objc-test.sh
|
|
|