diff --git a/pkg/cmd/roachtest/fixtures/1/checkpoint-v19.2.tgz b/pkg/cmd/roachtest/fixtures/1/checkpoint-v19.2.tgz index e82b0861e988..16442fbfb34f 100644 Binary files a/pkg/cmd/roachtest/fixtures/1/checkpoint-v19.2.tgz and b/pkg/cmd/roachtest/fixtures/1/checkpoint-v19.2.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/1/checkpoint-v20.1.tgz b/pkg/cmd/roachtest/fixtures/1/checkpoint-v20.1.tgz index 82169cfaa904..5180d63e74a0 100644 Binary files a/pkg/cmd/roachtest/fixtures/1/checkpoint-v20.1.tgz and b/pkg/cmd/roachtest/fixtures/1/checkpoint-v20.1.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/2/checkpoint-v19.2.tgz b/pkg/cmd/roachtest/fixtures/2/checkpoint-v19.2.tgz index 57839995e204..62a76a0f6cf4 100644 Binary files a/pkg/cmd/roachtest/fixtures/2/checkpoint-v19.2.tgz and b/pkg/cmd/roachtest/fixtures/2/checkpoint-v19.2.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/2/checkpoint-v20.1.tgz b/pkg/cmd/roachtest/fixtures/2/checkpoint-v20.1.tgz index 5ebbcd223081..afcc49ba78ab 100644 Binary files a/pkg/cmd/roachtest/fixtures/2/checkpoint-v20.1.tgz and b/pkg/cmd/roachtest/fixtures/2/checkpoint-v20.1.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/3/checkpoint-v19.2.tgz b/pkg/cmd/roachtest/fixtures/3/checkpoint-v19.2.tgz index bb9b5efba8f2..39b1d84101b4 100644 Binary files a/pkg/cmd/roachtest/fixtures/3/checkpoint-v19.2.tgz and b/pkg/cmd/roachtest/fixtures/3/checkpoint-v19.2.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/3/checkpoint-v20.1.tgz b/pkg/cmd/roachtest/fixtures/3/checkpoint-v20.1.tgz index 030d1df27d11..14778ac7b962 100644 Binary files a/pkg/cmd/roachtest/fixtures/3/checkpoint-v20.1.tgz and b/pkg/cmd/roachtest/fixtures/3/checkpoint-v20.1.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/4/checkpoint-v19.2.tgz b/pkg/cmd/roachtest/fixtures/4/checkpoint-v19.2.tgz index 71e9803e6720..c06e9b146b2b 100644 Binary files a/pkg/cmd/roachtest/fixtures/4/checkpoint-v19.2.tgz and b/pkg/cmd/roachtest/fixtures/4/checkpoint-v19.2.tgz differ diff --git a/pkg/cmd/roachtest/fixtures/4/checkpoint-v20.1.tgz b/pkg/cmd/roachtest/fixtures/4/checkpoint-v20.1.tgz index a3f1bbe93fc0..6a9330214996 100644 Binary files a/pkg/cmd/roachtest/fixtures/4/checkpoint-v20.1.tgz and b/pkg/cmd/roachtest/fixtures/4/checkpoint-v20.1.tgz differ diff --git a/pkg/cmd/roachtest/test_runner.go b/pkg/cmd/roachtest/test_runner.go index 00162e021342..79798b78e974 100644 --- a/pkg/cmd/roachtest/test_runner.go +++ b/pkg/cmd/roachtest/test_runner.go @@ -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. verMap := map[string]string{ - "20.2": "20.1.6", - "20.1": "19.2.9", + "20.2": "20.1.7", + "20.1": "19.2.11", "19.2": "19.1.11", "19.1": "2.1.9", "2.2": "2.1.9", diff --git a/pkg/cmd/roachtest/versionupgrade.go b/pkg/cmd/roachtest/versionupgrade.go index a4108ce8969f..281a773b94a0 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.1.6" + newV := "20.1.7" predV, err := PredecessorVersion(*version.MustParse("v" + newV)) if err != nil { t.Fatal(err)