Skip to content

Commit

Permalink
teamcity,version: add 1.22 to supported versions and CI matrix (#3601)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarzilli authored Dec 20, 2023
1 parent 57dad93 commit 66fbe30
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/goversion/compat.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 66fbe30

Please sign in to comment.