2024-02-14 14:28:45 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
set -m # needed to access jobs
|
|
|
|
|
|
|
|
GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel)
|
2024-02-19 15:41:36 +00:00
|
|
|
XCRUN_INSTALL_LOG_FILE="${GIT_ROOT}/logs/xcrun_install.log"
|
|
|
|
XCRUN_LAUNCH_LOG_FILE="${GIT_ROOT}/logs/xcrun_launch.log"
|
2024-02-14 14:28:45 +00:00
|
|
|
|
2024-02-19 15:41:36 +00:00
|
|
|
# Install on the simulator
|
|
|
|
installAndLaunchApp() {
|
|
|
|
xcrun simctl install "$UUID" "$APP_PATH" > "${XCRUN_INSTALL_LOG_FILE}" 2>&1
|
|
|
|
"${GIT_ROOT}/scripts/wait-for-metro-port.sh" 2>&1
|
|
|
|
xcrun simctl launch "$UUID" im.status.ethereum.debug > "${XCRUN_LAUNCH_LOG_FILE}" 2>&1
|
2024-02-14 14:28:45 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-02-19 15:41:36 +00:00
|
|
|
showXcrunLogs() {
|
|
|
|
cat "${XCRUN_INSTALL_LOG_FILE}" >&2;
|
|
|
|
cat "${XCRUN_LAUNCH_LOG_FILE}" >&2;
|
2024-02-14 14:28:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Check if the first argument is provided
|
|
|
|
if [ -z "${1-}" ]; then
|
|
|
|
echo "Error: No simulator name provided." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
SIMULATOR=${1}
|
|
|
|
|
|
|
|
# get our desired UUID
|
|
|
|
UUID=$(xcrun simctl list devices | grep -E "$SIMULATOR \(" | head -n 1 | awk -F '[()]' '{print $2}')
|
|
|
|
|
|
|
|
# get simulator status
|
|
|
|
SIMULATOR_STATE=$(xcrun simctl list devices | grep -E "$SIMULATOR \(" | head -n 1 | awk '{print $NF}')
|
|
|
|
|
|
|
|
# sometimes a simulator is already running, shut it down to avoid errors
|
|
|
|
if [ "$SIMULATOR_STATE" != "(Shutdown)" ]; then
|
|
|
|
xcrun simctl shutdown "$UUID"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# boot up iOS for simulator
|
|
|
|
xcrun simctl boot "$UUID"
|
|
|
|
|
|
|
|
# start the simulator
|
|
|
|
open -a Simulator --args -CurrentDeviceUDID "$UUID"
|
|
|
|
|
2024-02-15 12:25:06 +00:00
|
|
|
BUILD_DIR="${GIT_ROOT}/build"
|
|
|
|
|
2024-02-14 14:28:45 +00:00
|
|
|
#iOS build of debug scheme
|
2024-02-15 12:25:06 +00:00
|
|
|
xcodebuild -workspace "ios/StatusIm.xcworkspace" -configuration Debug -scheme StatusIm -destination id="$UUID" -derivedDataPath "${BUILD_DIR}" | xcbeautify
|
|
|
|
|
|
|
|
APP_PATH="${BUILD_DIR}/Build/Products/Debug-iphonesimulator/StatusIm.app"
|
|
|
|
|
2024-02-19 15:41:36 +00:00
|
|
|
trap showXcrunLogs EXIT ERR INT QUIT
|
|
|
|
installAndLaunchApp &
|
|
|
|
exec "${GIT_ROOT}/scripts/run-metro.sh" 2>&1
|