TeamCity,goversion: bump test matrix (#3092)

Add Go 1.19 to test matrix, drop 1.16.
This commit is contained in:
Alessandro Arzilli 2022-08-05 21:04:26 +02:00 committed by GitHub
parent b83ea0c2fa
commit 65d5eb7380
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

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

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