Blob Blame History Raw
#! /bin/sh

# Prepare master branch, review the list of branches below and then execute this
# script.

main=rawhide
branches="$main epel7 epel8 f33 f34 f35"

exit_handler ()
{
    git checkout "$main"
}

trap exit_handler EXIT

set -e
set -x

koji hello

tasks=
for branch in $branches; do
    if test $branch != "$main"; then
        git checkout "$branch"
        git merge "$main"
    fi
    git push
    tasks="${tasks}`fedpkg build --nowait | grep 'Created task' | cut -d: -f2`"
done

koji watch-task $tasks