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

32 lines
517 B
Plaintext
Raw Permalink 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.
main=main
2023-09-04 09:04:54 +00:00
branches="$main epel7 epel8 epel9 f37 f38 f39"
2019-09-07 13:32:28 +00:00
exit_handler ()
{
git checkout "$main"
2019-09-07 13:32:28 +00:00
}
trap exit_handler EXIT
set -e
set -x
koji hello
tasks=
for branch in $branches; do
if test $branch != "$main"; then
2019-09-07 13:32:28 +00:00
git checkout "$branch"
git merge "$main"
2019-09-07 13:32:28 +00:00
fi
git push
tasks="${tasks}`fedpkg build --nowait | grep 'Created task' | cut -d: -f2`"
done
koji watch-task $tasks