diff --git a/pkg/cmd/roachtest/fixtures/1/checkpoint-v21.1.tgz b/pkg/cmd/roachtest/fixtures/1/checkpoint-v21.1.tgz new file mode 100644 index 000000000000..f5bed906f0b5 Binary files /dev/null and b/pkg/cmd/roachtest/fixtures/1/checkpoint-v21.1.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/2/checkpoint-v21.1.tgz b/pkg/cmd/roachtest/fixtures/2/checkpoint-v21.1.tgz new file mode 100644 index 000000000000..507ab3975fe2 Binary files /dev/null and b/pkg/cmd/roachtest/fixtures/2/checkpoint-v21.1.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/3/checkpoint-v21.1.tgz b/pkg/cmd/roachtest/fixtures/3/checkpoint-v21.1.tgz new file mode 100644 index 000000000000..f5740d24bb41 Binary files /dev/null and b/pkg/cmd/roachtest/fixtures/3/checkpoint-v21.1.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/4/checkpoint-v21.1.tgz b/pkg/cmd/roachtest/fixtures/4/checkpoint-v21.1.tgz new file mode 100644 index 000000000000..1636578cbd3d Binary files /dev/null and b/pkg/cmd/roachtest/fixtures/4/checkpoint-v21.1.tgz differ diff --git a/pkg/cmd/roachtest/test_runner.go b/pkg/cmd/roachtest/test_runner.go index 7afda8b1bc60..07638fc1f504 100644 --- a/pkg/cmd/roachtest/test_runner.go +++ b/pkg/cmd/roachtest/test_runner.go @@ -1197,6 +1197,7 @@ func PredecessorVersion(buildVersion version.Version) (string, error) { // (see runVersionUpgrade). The same is true for adding a new key to this // map. verMap := map[string]string{ + "21.2": "21.1.0-beta.5", "21.1": "20.2.8", "20.2": "20.1.15", "20.1": "19.2.11", diff --git a/pkg/cmd/roachtest/versionupgrade.go b/pkg/cmd/roachtest/versionupgrade.go index df81d5bd038e..9f541ff4de05 100644 --- a/pkg/cmd/roachtest/versionupgrade.go +++ b/pkg/cmd/roachtest/versionupgrade.go @@ -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.2.8" + newV := "21.1.0-beta.5" predV, err := PredecessorVersion(*version.MustParse("v" + newV)) if err != nil { t.Fatal(err)