Skip to content

Commit

Permalink
TeamCity,goversion: bump test matrix (go-delve#3092)
Browse files Browse the repository at this point in the history
Add Go 1.19 to test matrix, drop 1.16.
  • Loading branch information
aarzilli authored Aug 5, 2022
1 parent b83ea0c commit 65d5eb7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,23 @@ To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
version = "2020.2"

val targets = arrayOf(
"linux/amd64/1.16",
"linux/amd64/1.17",
"linux/amd64/1.18",
"linux/amd64/1.19",
"linux/amd64/tip",

"linux/386/1.18",
"linux/386/1.19",

"linux/arm64/1.18",
"linux/arm64/1.19",
"linux/arm64/tip",

"windows/amd64/1.18",
"windows/amd64/1.19",
"windows/amd64/tip",

"mac/amd64/1.18",
"mac/amd64/1.19",
"mac/amd64/tip",

"mac/arm64/1.18",
"mac/arm64/1.19",
"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 @@ -8,7 +8,7 @@ import (

var (
MinSupportedVersionOfGoMajor = 1
MinSupportedVersionOfGoMinor = 16
MinSupportedVersionOfGoMinor = 17
MaxSupportedVersionOfGoMajor = 1
MaxSupportedVersionOfGoMinor = 19
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)
Expand Down

0 comments on commit 65d5eb7

Please sign in to comment.