-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clusterversion: bump version to 24.1
This commit enacts the following steps: - add `V23_2` release version key - add `V24_1Start` version key - add `V24` version key alias - add `local-mixed-23.2` logictest config - create new bootstrap files (from the testdata), add to initial values map - update `pkg/build/version.txt` to `v24.1.0-alpha.00000000` - update releases file: ``` bazel build //pkg/cmd/release:release _bazel/bin/pkg/cmd/release/release_/release update-releases-file ``` We also make a small cleanup change to remove `firstUpgradesAfterPreExistingReleases` and instead use a helper function for first upgrades (and check that all `Start` versions have the expected description). Epic: none Release note: None
- Loading branch information
1 parent
90704d2
commit 722bf13
Showing
38 changed files
with
5,438 additions
and
385 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v23.2.0-alpha.4 | ||
v24.1.0-alpha.00000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_test") | ||
|
||
go_test( | ||
name = "local-mixed-23_2_test", | ||
size = "enormous", | ||
srcs = ["generated_test.go"], | ||
args = select({ | ||
"//build/toolchains:use_ci_timeouts": ["-test.timeout=895s"], | ||
"//conditions:default": ["-test.timeout=3595s"], | ||
}), | ||
data = [ | ||
"//c-deps:libgeos", # keep | ||
"//pkg/ccl/logictestccl:testdata", # keep | ||
], | ||
exec_properties = {"Pool": "large"}, | ||
shard_count = 6, | ||
tags = [ | ||
"ccl_test", | ||
"cpu:1", | ||
], | ||
deps = [ | ||
"//pkg/base", | ||
"//pkg/build/bazel", | ||
"//pkg/ccl", | ||
"//pkg/security/securityassets", | ||
"//pkg/security/securitytest", | ||
"//pkg/server", | ||
"//pkg/sql/logictest", | ||
"//pkg/testutils/serverutils", | ||
"//pkg/testutils/skip", | ||
"//pkg/testutils/testcluster", | ||
"//pkg/util/leaktest", | ||
"//pkg/util/randutil", | ||
], | ||
) |
121 changes: 121 additions & 0 deletions
121
pkg/ccl/logictestccl/tests/local-mixed-23.2/generated_test.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.