mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 10:42:53 +00:00
Jakub Sokołowski
7b6b620ceb
Changes: - Add `nix/DETAILS.md` for more in-depth info - Rename some of `config.status-im` variables - Drop `env` argument for Android build - Use `overlays` instead of `packageOverrides` - Move the `pkgs` overlay to `nix/overlay.nix` - Move `nix/status-go/utils.nix` to `nix/tools` - Make `shell.nix` use the `shells.default` only - Use `default.nix` as target for `nix/scripts/shell.sh` - Make `nix/scripts/shell.sh` use `--attr` instead of `target` - Drop the `target` argument in favour of using `--attr` - Drop unnecessary `src` from `nix/mobile/ios/default.nix` - Move `mkShell` and `mergeSh` under `lib` - Move `patched-go` package to `nix/pkgs` directory - Move `gomobile` package to `nix/pkgs` directory - Move `ANDROID_ABI_SPLIT` to `config.status-im.android.abi-split` - Move `ANDROID_ABI_INCLUDE to `config.status-im.android.abi-include` Signed-off-by: Jakub Sokołowski <jakub@status.im>
68 lines
2.3 KiB
Bash
Executable File
68 lines
2.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Needed to fail on must_get_env()
|
|
set -e
|
|
|
|
GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel)
|
|
source "${GIT_ROOT}/scripts/colors.sh"
|
|
|
|
function must_get_env() {
|
|
declare -n VAR_NAME="$1"
|
|
if [[ -n "${VAR_NAME}" ]]; then
|
|
echo "${VAR_NAME}"
|
|
return
|
|
fi
|
|
echo -e "${RED}No required env variable:${RST} ${BLD}${!VAR_NAME}${RST}" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
function append_env_export() {
|
|
ENV_VAR_NAME=${1}
|
|
if [[ -n "${!ENV_VAR_NAME}" ]]; then
|
|
echo "export ${ENV_VAR_NAME}=\"${!ENV_VAR_NAME}\";" >> "${SECRETS_FILE_PATH}"
|
|
fi
|
|
}
|
|
|
|
config=''
|
|
if [ -n "${STATUS_GO_SRC_OVERRIDE}" ]; then
|
|
config+="status-im.status-go.src-override=\"${STATUS_GO_SRC_OVERRIDE}\";"
|
|
fi
|
|
if [ -n "${NIMBUS_SRC_OVERRIDE}" ]; then
|
|
config+="status-im.nimbus.src-override=\"${NIMBUS_SRC_OVERRIDE}\";"
|
|
fi
|
|
config+="status-im.build-type=\"$(must_get_env BUILD_TYPE)\";"
|
|
config+="status-im.build-number=\"$(must_get_env BUILD_NUMBER)\";"
|
|
config+="status-im.android.keystore-path=\"$(must_get_env KEYSTORE_PATH)\";"
|
|
config+="status-im.android.abi-split=\"$(must_get_env ANDROID_ABI_SPLIT)\";"
|
|
config+="status-im.android.abi-include=\"$(must_get_env ANDROID_ABI_INCLUDE)\";"
|
|
nixOpts=()
|
|
|
|
# Secrets like this can't be passed via args or they end up in derivation
|
|
SECRETS_FILE_PATH=$(mktemp)
|
|
chmod 644 ${SECRETS_FILE_PATH}
|
|
trap "rm -f ${SECRETS_FILE_PATH}" EXIT
|
|
append_env_export 'KEYSTORE_PASSWORD'
|
|
append_env_export 'KEYSTORE_ALIAS'
|
|
append_env_export 'KEYSTORE_KEY_PASSWORD'
|
|
nixOpts+=("--argstr" "secretsFile" "${SECRETS_FILE_PATH}")
|
|
nixOpts+=("--argstr" "buildEnv" "$(must_get_env BUILD_ENV)")
|
|
|
|
if [[ "$(uname -s)" =~ Darwin ]]; then
|
|
# Start a watchman instance if not started already and store its socket path.
|
|
# In order to get access to the right versions of watchman and jq,
|
|
# we start an ad-hoc nix-shell that imports the packages from nix/nixpkgs-bootstrap.
|
|
WATCHMAN_SOCKFILE=$(watchman get-sockname --no-pretty | jq -r .sockname)
|
|
nixOpts+=(
|
|
"--argstr" "watchmanSockPath" "${WATCHMAN_SOCKFILE}"
|
|
"--option" "extra-sandbox-paths" "${KEYSTORE_PATH} ${SECRETS_FILE_PATH} ${WATCHMAN_SOCKFILE}"
|
|
)
|
|
else
|
|
nixOpts+=(
|
|
"--option" "extra-sandbox-paths" "${KEYSTORE_PATH} ${SECRETS_FILE_PATH}"
|
|
)
|
|
fi
|
|
|
|
nixOpts+=("--arg" "config" "{${config}}")
|
|
|
|
${GIT_ROOT}/nix/scripts/build.sh targets.mobile.android.release "${nixOpts[@]}"
|