X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fautorelease%2Fversion-bump.sh;h=7d81b33a24929ef7a53ff149ac14ad594bef943f;hb=b2b972f187daab6bf28b7b02809e617bc7fecbff;hp=fc7e0466a15b48f354dfb8d2a8399f6454ca63a4;hpb=2e3f8181c08b9d95435a17a1aa7a39ecbba7d3a3;p=releng%2Fbuilder.git diff --git a/jjb/autorelease/version-bump.sh b/jjb/autorelease/version-bump.sh index fc7e0466a..7d81b33a2 100644 --- a/jjb/autorelease/version-bump.sh +++ b/jjb/autorelease/version-bump.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/bash -l # SPDX-License-Identifier: EPL-1.0 ############################################################################## # Copyright (c) 2017 The Linux Foundation and others. @@ -16,6 +16,7 @@ echo "---> version-bump.sh" # The only purpose of RELEASE_TAG in this script is to set the Gerrit topic. # It is also used as a placeholder for version bumping but gets wiped out # immediately to bump versions by x.y.(z+1). +TOPIC="${RELEASE_TAG}" RELEASE_TAG="${STREAM^}" mkdir -p "$WORKSPACE/archives" @@ -34,15 +35,10 @@ fi if [ "$BRANCH_CUT" = "false" ]; then git checkout -b "${BRANCH,,}" "origin/${BRANCH,,}" - # TODO: Simplify once stable/nitrogen is no longer supported. for module in $(git submodule | awk '{ print $2 }') do pushd "$module" - if [ "$GERRIT_BRANCH" == "stable/nitrogen" ] && [ "$module" == "yangtools" ]; then - git checkout -b "v1.2.x" "origin/v1.2.x" - else - git checkout -b "${BRANCH,,}" "origin/${BRANCH,,}" - fi + git checkout -b "${BRANCH,,}" "origin/${BRANCH,,}" popd done fi @@ -62,6 +58,11 @@ if [ "$BRANCH_CUT" = "false" ]; then 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 + 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 git checkout -f @@ -72,14 +73,8 @@ mkdir -p "$patch_dir" for module in $(git submodule | awk '{ print $2 }') do pushd "$module" - # TODO: Remove once stable/nitrogen is no longer supported. - if [ "$GERRIT_BRANCH" == "stable/nitrogen" ] && [ "$module" == "yangtools" ]; then - git format-patch --stdout "origin/v1.2.x" > "$patch_dir/${module//\//-}.patch" - git bundle create "$patch_dir/${module//\//-}.bundle" "origin/v1.2.x..HEAD" - else - git format-patch --stdout "origin/${BRANCH,,}" > "$patch_dir/${module//\//-}.patch" - git bundle create "$patch_dir/${module//\//-}.bundle" "origin/${BRANCH,,}..HEAD" - fi + git format-patch --stdout "origin/${BRANCH,,}" > "$patch_dir/${module//\//-}.patch" + git bundle create "$patch_dir/${module//\//-}.bundle" "origin/${BRANCH,,}..HEAD" popd done @@ -131,7 +126,7 @@ git submodule foreach git checkout -f if [ "$DRY_RUN" = "false" ] then # Push up patches last, as long as nothing failed. - git submodule foreach git review --yes -t "${RELEASE_TAG}" + git submodule foreach git review --yes -t "${TOPIC}" fi echo "Version bumping complete."