teamcity,version: add 1.22 to supported versions and CI matrix (#3601)

This commit is contained in:
Alessandro Arzilli 2023-12-21 00:31:30 +01:00 committed by GitHub
parent 57dad9342a
commit 66fbe30586
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

@ -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)