Skip to content

Commit

Permalink
Merge pull request #13218 from serathius/release-test
Browse files Browse the repository at this point in the history
test: Bump release tests to use 3.5.0
  • Loading branch information
ptabor authored Jul 14, 2021
2 parents 1ad2150 + 027d8ef commit 2d059d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -611,13 +611,13 @@ function dep_pass {
function release_pass {
rm -f ./bin/etcd-last-release
# to grab latest patch release; bump this up for every minor release
UPGRADE_VER=$(git tag -l --sort=-version:refname "v3.4.*" | head -1)
UPGRADE_VER=$(git tag -l --sort=-version:refname "v3.5.*" | head -1 | cut -d- -f1)
if [ -n "$MANUAL_VER" ]; then
# in case, we need to test against different version
UPGRADE_VER=$MANUAL_VER
fi
if [[ -z ${UPGRADE_VER} ]]; then
UPGRADE_VER="v3.3.0"
UPGRADE_VER="v3.5.0"
log_warning "fallback to" ${UPGRADE_VER}
fi

Expand Down

0 comments on commit 2d059d7

Please sign in to comment.