mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
110 lines
3.1 KiB
Bash
Executable file
110 lines
3.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
source ./env.sh
|
|
|
|
APP_PLATFORMS=("android" "ios" "macos" "linux" "windows")
|
|
APP_NAMED_IDS=("stack_wallet" "stack_duo")
|
|
|
|
# Function to display usage.
|
|
usage() {
|
|
echo "Usage: $0 -v <version> -b <build_number> -p <platform> -a <app>"
|
|
exit 1
|
|
}
|
|
|
|
confirmDisclaimer() {
|
|
while true; do
|
|
# shellcheck disable=SC2162
|
|
read -p "Please confirm you understand that when using certain values for <version> and <build_number> there is a chance that the resulting app WILL DELETE CRITICAL WALLET DATA. Are you sure you want to continue? (yes/no): " response
|
|
case $response in
|
|
[Yy][Ee][Ss] ) echo "Continuing..."; break;;
|
|
[Nn][Oo] ) exit 0;;
|
|
* ) echo "Invalid response";;
|
|
esac
|
|
done
|
|
}
|
|
|
|
# required args
|
|
unset -v APP_VERSION_STRING
|
|
unset -v APP_BUILD_NUMBER
|
|
unset -v APP_BUILD_PLATFORM
|
|
unset -v APP_NAMED_ID
|
|
|
|
# optional args (with defaults)
|
|
BUILD_CRYPTO_PLUGINS=0
|
|
|
|
# Parse command-line arguments.
|
|
while getopts "v:b:p:a:i" opt; do
|
|
case "${opt}" in
|
|
v) APP_VERSION_STRING="$OPTARG" ;;
|
|
b) APP_BUILD_NUMBER="$OPTARG" ;;
|
|
p) APP_BUILD_PLATFORM="$OPTARG" ;;
|
|
a) APP_NAMED_ID="$OPTARG" ;;
|
|
i) BUILD_CRYPTO_PLUGINS=1 ;;
|
|
*) usage ;;
|
|
esac
|
|
done
|
|
|
|
if [ -z "$APP_VERSION_STRING" ]; then
|
|
echo "Missing -v option"
|
|
usage
|
|
fi
|
|
|
|
if [ -z "$APP_BUILD_NUMBER" ]; then
|
|
echo "Missing -b option"
|
|
usage
|
|
fi
|
|
|
|
if [ -z "$APP_BUILD_PLATFORM" ]; then
|
|
echo "Missing -p option"
|
|
usage
|
|
fi
|
|
|
|
if [ -z "$APP_NAMED_ID" ]; then
|
|
echo "Missing -a option"
|
|
usage
|
|
fi
|
|
|
|
confirmDisclaimer
|
|
set -x
|
|
|
|
# checks for the correct platform dir and pushes it for later
|
|
if printf '%s\0' "${APP_PLATFORMS[@]}" | grep -Fxqz -- "${APP_BUILD_PLATFORM}"; then
|
|
pushd "${APP_PROJECT_ROOT_DIR}/scripts/${APP_BUILD_PLATFORM}"
|
|
else
|
|
echo "Invalid platform: ${APP_BUILD_PLATFORM}"
|
|
usage
|
|
fi
|
|
|
|
# apply config project wide change changes
|
|
if printf '%s\0' "${APP_NAMED_IDS[@]}" | grep -Fxqz -- "${APP_NAMED_ID}"; then
|
|
if [ -f "${APP_PROJECT_ROOT_DIR}/pubspec.yaml" ]; then
|
|
rm "${APP_PROJECT_ROOT_DIR}/pubspec.yaml"
|
|
fi
|
|
cp "${APP_PROJECT_ROOT_DIR}/scripts/app_config/templates/pubspec.yaml" "${APP_PROJECT_ROOT_DIR}/pubspec.yaml"
|
|
"${APP_PROJECT_ROOT_DIR}/scripts/app_config/shared/update_version.sh" -v "${APP_VERSION_STRING}" -b "${APP_BUILD_NUMBER}"
|
|
"${APP_PROJECT_ROOT_DIR}/scripts/app_config/shared/link_assets.sh" "${APP_NAMED_ID}"
|
|
# shellcheck disable=SC1090
|
|
source "${APP_PROJECT_ROOT_DIR}/scripts/app_config/configure_${APP_NAMED_ID}.sh"
|
|
"${APP_PROJECT_ROOT_DIR}/scripts/app_config/platforms/${APP_BUILD_PLATFORM}/platform_config.sh"
|
|
else
|
|
echo "Invalid app id: ${APP_NAMED_ID}"
|
|
exit 1
|
|
fi
|
|
|
|
# run icon and image generators after project config has completed
|
|
"${APP_PROJECT_ROOT_DIR}/scripts/app_config/shared/asset_generators.sh"
|
|
|
|
if [ "$BUILD_CRYPTO_PLUGINS" -eq 0 ]; then
|
|
if [[ "$APP_NAMED_ID" = "stack_wallet" ]]; then
|
|
./build_all.sh
|
|
elif [[ "$APP_NAMED_ID" = "stack_duo" ]]; then
|
|
./build_all_duo.sh
|
|
else
|
|
echo "Invalid app id: ${APP_NAMED_ID}"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
popd
|