From 65d5eb73803a288a056ea2eab7b17a3f7c7301f2 Mon Sep 17 00:00:00 2001 From: Alessandro Arzilli Date: Fri, 5 Aug 2022 21:04:26 +0200 Subject: [PATCH] TeamCity,goversion: bump test matrix (#3092) Add Go 1.19 to test matrix, drop 1.16. --- .teamcity/settings.kts | 12 ++++++------ pkg/goversion/compat.go | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.teamcity/settings.kts b/.teamcity/settings.kts index e157212d..1901c601 100644 --- a/.teamcity/settings.kts +++ b/.teamcity/settings.kts @@ -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" ) diff --git a/pkg/goversion/compat.go b/pkg/goversion/compat.go index 6427c722..f8838aa2 100644 --- a/pkg/goversion/compat.go +++ b/pkg/goversion/compat.go @@ -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)