X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fautorelease%2Fversion-bump.sh;h=cbd532e5936f7a3538d2e77429c1601b46ff82a4;hb=b84f55e73cdfe2a54a7b6b90ee416a230cc41372;hp=7d81b33a24929ef7a53ff149ac14ad594bef943f;hpb=af892a38d223f9ab3e53e0cc6012a289dcde1842;p=releng%2Fbuilder.git diff --git a/jjb/autorelease/version-bump.sh b/jjb/autorelease/version-bump.sh index 7d81b33a2..cbd532e59 100644 --- a/jjb/autorelease/version-bump.sh +++ b/jjb/autorelease/version-bump.sh @@ -26,6 +26,8 @@ BRANCH="$GERRIT_BRANCH" # Ensure we fail the job if any steps fail. set -eu -o pipefail +pip install --user --quiet --upgrade git-review + # Fail if branch cutting is not on master if [ "$BRANCH_CUT" = "true" ] && [ "$BRANCH" != "master" ]; then echo "ERROR: Cannot branch cut on $BRANCH, its required to be on the master branch." @@ -43,8 +45,7 @@ if [ "$BRANCH_CUT" = "false" ]; then done fi - -# Setup Gerrit remove to ensure Change-Id gets set on commit. +# Setup Gerrit remote to ensure Change-Id gets set on commit. git config --global --add gitreview.username "jenkins-$SILO" git review -s git remote -v @@ -59,9 +60,9 @@ fi lftools version bump "$RELEASE_TAG" # Ignore changes to Final distribution since that will be released separately -pushd integration/distribution || exit 1 - git checkout -f opendaylight/pom.xml -popd || exit 1 +pushd integration/distribution || true + git checkout -f opendaylight/pom.xml || true +popd || true git submodule foreach "git commit -asm 'Bump versions by x.y.(z+1)'" # Only submodules need to be bumped, we can ignore autorelease's bump information