Skip to content

Commit f76ac35

Browse files
committed
tools: add max version for delve
Latest delve does not support 1.18, breaking the long tests for 1.18. Change-Id: I5c5ea583d41576c2c34c273df933a2dfaf8477e3 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/540815 Reviewed-by: Robert Findley <[email protected]> TryBot-Result: kokoro <[email protected]> Commit-Queue: Suzy Mueller <[email protected]>
1 parent aeae497 commit f76ac35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/installtools/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var tools = []struct {
3939
{"github.com/cweill/gotests/gotests", "", false, nil},
4040
{"github.com/haya14busa/goplay/cmd/goplay", "", false, nil},
4141
{"honnef.co/go/tools/cmd/staticcheck", "", false, []finalVersion{{16, "v0.2.2"}, {18, "v0.3.3"}}},
42-
{"github.com/go-delve/delve/cmd/dlv", "", false, []finalVersion{{16, "v1.8.3"}, {17, "v1.9.1"}}},
42+
{"github.com/go-delve/delve/cmd/dlv", "", false, []finalVersion{{16, "v1.8.3"}, {17, "v1.9.1"}, {18, "v1.20.2"}}},
4343
}
4444

4545
// pickVersion returns the version to install based on the supported

0 commit comments

Comments
 (0)