X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fautorelease%2Fversion-bump.sh;h=a95f9b32f592843547bc4ed991e6f9e9c96a0908;hb=995edd3864f792c93980549fdd6e402d36d88fd5;hp=7d81b33a24929ef7a53ff149ac14ad594bef943f;hpb=ff756499bca56c5bf5e203026442a31c1e8d4261;p=releng%2Fbuilder.git diff --git a/jjb/autorelease/version-bump.sh b/jjb/autorelease/version-bump.sh index 7d81b33a2..a95f9b32f 100644 --- a/jjb/autorelease/version-bump.sh +++ b/jjb/autorelease/version-bump.sh @@ -26,6 +26,11 @@ BRANCH="$GERRIT_BRANCH" # Ensure we fail the job if any steps fail. set -eu -o pipefail +# shellcheck disable=SC1090 +. ~/lf-env.sh + +lf-activate-venv "git-review==1.28" + # 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 +48,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 @@ -55,15 +59,20 @@ git status if [ "$BRANCH_CUT" = "false" ]; then lftools version release "$RELEASE_TAG" + commit_msg="Bump versions by x.y.(z+1)" +else + commit_msg="Bump versions by x.(y+1).z" + # If we are branch cutting we also need to bump the docs/conf.yaml version + find . -type f -name conf.yaml -exec sed -i "s/version:.*/version: ${STREAM^}/" {} \; 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)'" +git submodule foreach "git commit -asm '${commit_msg}'" # Only submodules need to be bumped, we can ignore autorelease's bump information git checkout -f