argparse-manpage/build-and-update-all-branches
Pavel Raiskup cde928ea81 New upstream release
Version: 1.5-1
2020-12-14 08:08:14 +01:00

37 lines
611 B
Bash
Executable File

#! /bin/sh
# Prepare master branch, review the list of branches below and then execute this
# script.
branches='master epel7 epel8 f32 f33'
exit_handler ()
{
git checkout master
}
trap exit_handler EXIT
set -e
set -x
koji hello
tasks=
for branch in $branches; do
if test $branch != master; then
git checkout "$branch"
git merge master
fi
git push
tasks="${tasks}`fedpkg build --nowait | grep 'Created task' | cut -d: -f2`"
done
koji watch-task $tasks
for branch in $branches; do
test $branch != master || continue
git checkout $branch
fedpkg update
done