FeaturizersLibrary/bootstrap.sh

100 строки
2.5 KiB
Bash
Executable File

#!/bin/bash
# ----------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License
# ----------------------------------------------------------------------
set -e # Exit on error
set +v # Disable output
should_continue=1
if [[ ${should_continue} == 1 && "$1" == "" ]]
then
echo ""
echo "This script bootstraps common library enlistment and setup."
echo ""
echo " Usage:"
echo " $0 <common code dir> [/name=<custom environment name>]"
echo ""
should_continue=0
fi
if [[ ${should_continue} == 1 && ${DEVELOPMENT_ENVIRONMENT_REPOSITORY_ACTIVATED_FLAG} ]]
then
echo ""
echo "ERROR: Please run this from a standard (non-activated) command prompt."
echo ""
should_continue=0
fi
if [[ ${should_continue} == 1 ]]
then
# Bootstrap enlistment and setup of Common_Environment, and then invoke
# enlistment and setup once python is available.
if [[ ! -e "$1/Common/Environment" ]]
then
git clone https://github.com/davidbrownell/Common_Environment_v3.git "$1/Common/Environment.tmp"
mv "$1/Common/Environment.tmp" "$1/Common/Environment"
fi
name=""
ARGS=()
for var in "${@:2}"
do
if [[ $var == /name=* ]] || [[ $var == -name=* ]]
then
name=`echo $var | cut -d'=' -f 2`
else
ARGS+=("$var")
fi
done
if [[ ! -z "${name}" ]]
then
name_arg="/name=${name}"
else
name_arg=""
fi
"$1/Common/Environment/Setup.sh" ${name_arg}
# Write the environment activation and python execution statements to a temporary
# file so this environment remains unactivated (by doing this, the current script
# can be invoked multiple times from the same environment).
if [[ ! -z "${name}" ]]
then
activate_cmd="Activate.${name}.sh"
else
activate_cmd="Activate.sh"
fi
this_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cat >bootstrap_tmp.sh <<EOL
#!/bin/bash
set -e
. "$1/Common/Environment/${activate_cmd}" python36
${this_dir}/Setup.sh Enlist "$1" /recurse ${ARGS[@]}
${this_dir}/Setup.sh /recurse ${ARGS[@]}
EOL
chmod +x bootstrap_tmp.sh
./bootstrap_tmp.sh
error_code=${error_code}
rm bootstrap_tmp.sh
if [[ ${error_code} -ne 0 ]]
then
should_continue=0
fi
chown -R ${SUDO_UID}:${SUDO_GID} "$1"
fi