teamcity,version: add 1.22 to supported versions and CI matrix (#3601)
This commit is contained in:
parent
57dad9342a
commit
66fbe30586
14
.teamcity/settings.kts
vendored
14
.teamcity/settings.kts
vendored
@ -41,25 +41,25 @@ To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
|
||||
version = "2023.05"
|
||||
|
||||
val targets = arrayOf(
|
||||
"linux/amd64/1.19",
|
||||
"linux/amd64/1.20",
|
||||
"linux/amd64/1.21",
|
||||
"linux/amd64/1.22",
|
||||
"linux/amd64/tip",
|
||||
|
||||
"linux/386/1.21",
|
||||
"linux/386/1.22",
|
||||
|
||||
"linux/arm64/1.21",
|
||||
"linux/arm64/1.22",
|
||||
"linux/arm64/tip",
|
||||
|
||||
"linux/ppc64le/1.21",
|
||||
"linux/ppc64le/1.22",
|
||||
|
||||
"windows/amd64/1.21",
|
||||
"windows/amd64/1.22",
|
||||
"windows/amd64/tip",
|
||||
|
||||
"mac/amd64/1.21",
|
||||
"mac/amd64/1.22",
|
||||
"mac/amd64/tip",
|
||||
|
||||
"mac/arm64/1.21",
|
||||
"mac/arm64/1.22",
|
||||
"mac/arm64/tip"
|
||||
)
|
||||
|
||||
|
@ -10,7 +10,7 @@ var (
|
||||
MinSupportedVersionOfGoMajor = 1
|
||||
MinSupportedVersionOfGoMinor = 19
|
||||
MaxSupportedVersionOfGoMajor = 1
|
||||
MaxSupportedVersionOfGoMinor = 21
|
||||
MaxSupportedVersionOfGoMinor = 22
|
||||
goTooOldErr = fmt.Sprintf("Go version %%s is too old for this version of Delve (minimum supported version %d.%d, suppress this error with --check-go-version=false)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)
|
||||
goTooOldWarn = fmt.Sprintf("WARNING: undefined behavior - Go version %%s is too old for this version of Delve (minimum supported version %d.%d)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)
|
||||
dlvTooOldErr = fmt.Sprintf("Version of Delve is too old for Go version %%s (maximum supported version %d.%d, suppress this error with --check-go-version=false)", MaxSupportedVersionOfGoMajor, MaxSupportedVersionOfGoMinor)
|
||||
|
Loading…
Reference in New Issue
Block a user