mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-06 18:44:12 +00:00
obs: build_all.sh: Add usage function (refactor)
Add usage function. Signed-off-by: Jose Carlos Venegas Munoz <jose.carlos.venegas.munoz@intel.com>
This commit is contained in:
parent
0d789968a4
commit
764ce02779
@ -10,7 +10,6 @@ set -o errexit
|
|||||||
set -o nounset
|
set -o nounset
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
|
|
||||||
script_dir=$(dirname "$0")
|
script_dir=$(dirname "$0")
|
||||||
#Note:Lets update qemu and the kernel first, they take longer to build.
|
#Note:Lets update qemu and the kernel first, they take longer to build.
|
||||||
#Note: runtime is build at the end to get the version from all its dependencies.
|
#Note: runtime is build at the end to get the version from all its dependencies.
|
||||||
@ -36,10 +35,22 @@ export BUILD_DISTROS=${BUILD_DISTROS:-xUbuntu_16.04}
|
|||||||
export AUTHOR="${AUTHOR:-user}"
|
export AUTHOR="${AUTHOR:-user}"
|
||||||
export AUTHOR_EMAIL="${AUTHOR_EMAIL:-user@example.com}"
|
export AUTHOR_EMAIL="${AUTHOR_EMAIL:-user@example.com}"
|
||||||
|
|
||||||
cd "$script_dir"
|
|
||||||
|
|
||||||
OBS_API="https://api.opensuse.org"
|
OBS_API="https://api.opensuse.org"
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
msg="${1:-}"
|
||||||
|
exit_code=$"${2:-0}"
|
||||||
|
cat <<EOT
|
||||||
|
${msg}
|
||||||
|
Usage:
|
||||||
|
${script_name} <kata-branch>
|
||||||
|
EOT
|
||||||
|
exit "${exit_code}"
|
||||||
|
}
|
||||||
|
|
||||||
|
main() {
|
||||||
|
local branch="${1:-}"
|
||||||
|
[ -n "${branch}" ] || usage "missing branch" "1"
|
||||||
if [ -n "${OBS_USER:-}" ] && [ -n "${OBS_PASS:-}" ] && [ ! -e "${OSCRC:-}" ]; then
|
if [ -n "${OBS_USER:-}" ] && [ -n "${OBS_PASS:-}" ] && [ ! -e "${OSCRC:-}" ]; then
|
||||||
echo "Creating ${OSCRC} with user $OBS_USER"
|
echo "Creating ${OSCRC} with user $OBS_USER"
|
||||||
cat <<eom >"${OSCRC}"
|
cat <<eom >"${OSCRC}"
|
||||||
@ -51,17 +62,21 @@ pass = ${OBS_PASS}
|
|||||||
eom
|
eom
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "${PUSH}" ]; then
|
|
||||||
# push to obs
|
|
||||||
PUSH_TO_OBS="-p"
|
|
||||||
elif [ -n "${LOCAL}" ]; then
|
|
||||||
# local build
|
|
||||||
PUSH_TO_OBS="-l"
|
|
||||||
fi
|
|
||||||
|
|
||||||
for p in "${projects[@]}"; do
|
for p in "${projects[@]}"; do
|
||||||
pushd "$p" >>/dev/null
|
pushd "$p" >>/dev/null
|
||||||
|
update_cmd="./update.sh"
|
||||||
|
if [ -n "${PUSH}" ]; then
|
||||||
|
# push to obs
|
||||||
|
update_cmd+=" -p"
|
||||||
|
elif [ -n "${LOCAL}" ]; then
|
||||||
|
# local build
|
||||||
|
update_cmd+=" -l"
|
||||||
|
fi
|
||||||
|
|
||||||
echo "update ${p}"
|
echo "update ${p}"
|
||||||
bash ./update.sh "${PUSH_TO_OBS}" -v
|
bash -c "${update_cmd} ${branch}"
|
||||||
popd >>/dev/null
|
popd >>/dev/null
|
||||||
done
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
main $@
|
||||||
|
Loading…
Reference in New Issue
Block a user