-
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: update version map and fixtures #55445
Conversation
For release tracking issues:
|
@@ -1171,8 +1171,8 @@ func PredecessorVersion(buildVersion version.Version) (string, error) { | |||
// (see runVersionUpgrade). The same is true for adding a new key to this | |||
// map. |
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.
15214bd
to
9f79ed2
Compare
Thanks @arulajmani and @irfansharif to helping me figure out how to generate the fixtures! 💯 This is RFAL, thank you! |
"20.2": "20.1.6", | ||
"20.1": "19.2.9", | ||
"20.2": "20.1.7", | ||
"20.1": "19.2.11", |
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.
I only see the fixtures in pkg/cmd/roachtest/fixtures/*/checkpoint-v20.1.tgz
being updated, but it seems we're also bumping the version map for 19.2.11? If I've understood correctly, we'll need to generate fixtures for that too. We can do so by changing newV
below for one run and copying those artifacts in.
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.
Ah, thank you! Done :)
@@ -94,7 +94,7 @@ func runVersionUpgrade(ctx context.Context, t *test, c *cluster, buildVersion ve | |||
// The version to create/update the fixture for. Must be released (i.e. | |||
// can download it from the homepage); if that is not the case use the | |||
// empty string which uses the local cockroach binary. | |||
newV := "20.1.6" | |||
newV := "20.1.7" |
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.
Here.
This commit adds the recently released 19.2.11, and 20.1.7 to the version map in PredecessorVersion. Release note: None (testing change)
9f79ed2
to
4cef828
Compare
Thanks for the reviews and all the help! |
bors r+ |
Build succeeded: |
This commit adds the recently released 19.2.11, and 20.1.7
to the version map in PredecessorVersion.
Release note: None (testing change)