Report all unreleased library changes

Look through the project-config repository for projects managed by the
library-release team and show what unreleased changes they have.

Change-Id: Ieca86fcb260cd9d6476b3777c300f16e84bebccc
This commit is contained in:
Doug Hellmann 2015-06-12 21:15:33 +00:00
parent 9c545fdba2
commit ef6ecab48c
2 changed files with 29 additions and 0 deletions

View File

@ -207,6 +207,12 @@ is equivalent to:
./list_unreleased_changes.sh stable/kilo $(list-repos --code-only --team Oslo)
list_library_unreleased_changes.sh
----------------------------------
Runs list_unreleased_changes.sh for all libraries managed by any
project.
make_library_stable_branch.sh
-----------------------------

View File

@ -0,0 +1,23 @@
#!/bin/bash
#
# Convenience wrapper to show the unreleased changes in all
# libraries, so we don't have to remember the incantation.
if [[ $# -gt 1 ]]; then
echo "Usage: $(basename $0) <branch>"
exit 1
fi
SERIES=${1:-master}
TOOLSDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $TOOLSDIR/functions
if [[ -z "$VIRTUAL_ENV" ]]; then
tox -e venv --notest
source ./.tox/venv/bin/activate
fi
repos="$(list-repos --code-only --tag type:library --tag release:managed)"
$TOOLSDIR/list_unreleased_changes.sh $SERIES $repos