argparse-manpage/build-and-update-all-branches

31 lines
500 B
Plaintext
Raw Normal View History

2019-09-07 13:32:28 +00:00
#! /bin/sh
# Prepare master branch, review the list of branches below and then execute this
# script.
branches='rawhide epel7 epel8 f33 f34 f35'
2019-09-07 13:32:28 +00:00
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