-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
roachtest/multitenant-upgrade: hard-code predecessor version temporarily #108355
Conversation
// require.NoError(t, err) | ||
// Hard-code the pre-decessor release to 23.1.4 until a new patch release is out (23.1.9) because | ||
// the test is in-compatible with 23.1.{5,6,7,8} due to an erroneous PR merged on the 23.1 branch. | ||
predecessor := "23.1.4" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Could you make this override temporary by actually encoding a condition on the output of release.LatestPredecessor
? Something like:
if major == 23 and minor == 1 and patch < 7 {
predecessor = "23.1.4"
}
so that the condition automatically ceases to apply once .7 is released.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
27f74ec
to
e96d6b4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you
You could also include a mention to the specific patch that was problematic and the PR that was merged to fix it. |
Hard-code the pre-decessor release to 23.1.4 until a new patch release is out (23.1.9) because the test is in-compatible with 23.1.{5,6,7,8} due to an erroneous PR merged on the 23.1 branch. Release note: None Epic: none
TFTR! |
Build failed (retrying...): |
Build succeeded: |
Hard-code the pre-decessor release to 23.1.4 until a new patch release is out (23.1.9) because the test is in-compatible with 23.1.{5,6,7,8} due to an erroneous PR merged on the 23.1 branch.
Release note: None
Epic: CRDB-18499
Fixes #107851.