diff options
author | thegeorg <[email protected]> | 2024-01-25 19:44:03 +0300 |
---|---|---|
committer | thegeorg <[email protected]> | 2024-01-25 20:22:09 +0300 |
commit | b65dd88d2d36688300317c22b9c14ed9dcdeb37d (patch) | |
tree | 81945bcac5c01d8f89b8a88eddab8800bd1d6a96 | |
parent | 3fa3bc3d67f3e77fce7b45a7fc7608ef9a3131bb (diff) |
Get rid of go 1.20 support
-rw-r--r-- | build/conf/go.conf | 3 | ||||
-rw-r--r-- | build/external_resources/go_tools/ya.make | 4 |
2 files changed, 1 insertions, 6 deletions
diff --git a/build/conf/go.conf b/build/conf/go.conf index c58492e17cd..397a55cd5ee 100644 --- a/build/conf/go.conf +++ b/build/conf/go.conf @@ -63,9 +63,6 @@ GOSTD_VERSION=1.21 when ($GOSTD_VERSION == "1.21") { GOSTD=contrib/go/_std_1.21/src } -elsewhen ($GOSTD_VERSION == "1.20") { - GOSTD=contrib/go/_std_1.20/src -} otherwise { GOSTD=__unsupported_go_std_library_version_[$GOSTD_VERSION]__ } diff --git a/build/external_resources/go_tools/ya.make b/build/external_resources/go_tools/ya.make index 24807da914c..697ae83a5e6 100644 --- a/build/external_resources/go_tools/ya.make +++ b/build/external_resources/go_tools/ya.make @@ -1,8 +1,6 @@ RESOURCES_LIBRARY() -IF(GOSTD_VERSION == 1.20) - DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(GO_TOOLS go1.20.json) -ELSEIF(GOSTD_VERSION == 1.21) +IF(GOSTD_VERSION == 1.21) DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(GO_TOOLS go1.21.json) ELSE() MESSAGE(FATAL_ERROR Unsupported version [${GOSTD_VERSION}] of Go Standard Library) |