release-tools/list_library_unreleased_changes.sh
Doug Hellmann ef6ecab48c 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
2015-09-22 17:44:33 +00:00

24 lines
551 B
Bash
Executable File

#!/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