Merge "move list_library_unreleased_changes.sh to releases repo"

This commit is contained in:
Jenkins 2017-03-06 14:39:42 +00:00 committed by Gerrit Code Review
commit 496dd642e5
2 changed files with 0 additions and 34 deletions

View File

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

View File

@ -1,27 +0,0 @@
#!/bin/bash
#
# Convenience wrapper to show the unreleased changes in all
# libraries, so we don't have to remember the incantation.
if [[ $# -ne 2 ]]; then
echo "Usage: $(basename $0) <branch> <releases-dir>"
exit 1
fi
SERIES=${1:-master}
RELEASES_DIR=$2
TOOLSDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $TOOLSDIR/functions
# Set up the virtualenv where the list-deliverables command will be
# found. This is done outside of the invocation below because
# otherwise we get the tox output mixed up in the repo list output and
# try to do things like look at the history of "venv" and
# "installing".
(cd $RELEASES_DIR && tox -e venv --notest)
echo "Finding $SERIES library repositories..."
repos="$($RELEASES_DIR/.tox/venv/bin/list-deliverables --repos --type library --series $SERIES)"
$TOOLSDIR/list_unreleased_changes.sh $SERIES $repos