diff options
| author | thegeorg <[email protected]> | 2024-01-25 19:44:03 +0300 |
|---|---|---|
| committer | Alexander Smirnov <[email protected]> | 2024-01-26 20:49:18 +0300 |
| commit | 45ce8d4f5fd282b3221a19fe7fe71459a820dfca (patch) | |
| tree | 79aa76fb9353fe58cdcae67cd8dc6b7f671a00b0 | |
| parent | 97a6113075180982290fb695fd24a666d2b7ceac (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) |
