diff options
author | setser <setser@yandex-team.ru> | 2022-06-14 15:02:40 +0300 |
---|---|---|
committer | setser <setser@yandex-team.ru> | 2022-06-14 15:02:40 +0300 |
commit | d02af85169dcef35d8918cf516b9016fd8f82321 (patch) | |
tree | a2d5f42ec0b19feff2df4c642bff91b4177a70e5 /build | |
parent | c38f3409183af2ce08203f9b6d30714cc99fa8a5 (diff) | |
download | ydb-d02af85169dcef35d8918cf516b9016fd8f82321.tar.gz |
Remove Go 1.17.8
ref:7fbacda5c8a5c777feeda83c7dac7c67d67819f0
Diffstat (limited to 'build')
-rw-r--r-- | build/scripts/go_tool.py | 2 | ||||
-rw-r--r-- | build/ya.conf.json | 74 | ||||
-rw-r--r-- | build/ymake.core.conf | 5 |
3 files changed, 2 insertions, 79 deletions
diff --git a/build/scripts/go_tool.py b/build/scripts/go_tool.py index 2fa4b55076..025c2ecfbc 100644 --- a/build/scripts/go_tool.py +++ b/build/scripts/go_tool.py @@ -18,7 +18,7 @@ import process_command_files as pcf import process_whole_archive_option as pwa arc_project_prefix = 'a.yandex-team.ru/' -std_lib_prefix = 'contrib/go/_std/src/' +std_lib_prefix = 'contrib/go/_std_1.18/src/' vendor_prefix = 'vendor/' vet_info_ext = '.vet.out' vet_report_ext = '.vet.txt' diff --git a/build/ya.conf.json b/build/ya.conf.json index cf8bb7737c..a38e91b225 100644 --- a/build/ya.conf.json +++ b/build/ya.conf.json @@ -315,12 +315,6 @@ "saas2": { "description": "Run saas2 cli" }, - "go_1.17": { - "description": "Run go tool (1.17.8)" - }, - "gofmt_1.17": { - "description": "Run gofmt tool (1.17.8)" - }, "go": { "description": "Run go tool (1.18.2)" }, @@ -5536,53 +5530,6 @@ } ] }, - "golang_1_17_8": { - "tools": { - "golang_1.17": { - "bottle": "golang_1.17.8", - "executable": "golang_1.17" - }, - "go_1.17": { - "bottle": "golang_1.17.8", - "executable": "go_1.17" - }, - "gofmt_1.17": { - "bottle": "golang_1.17.8", - "executable": "gofmt_1.17" - } - }, - "platforms": [ - { - "host": { - "os": "LINUX" - }, - "default": true - }, - { - "host": { - "os": "DARWIN" - }, - "default": true - }, - { - "host": { - "os": "DARWIN", - "arch": "arm64" - }, - "default": true - }, - { - "host": { - "os": "WIN" - }, - "default": true - } - ], - "params": { - "type": "golang", - "version": "1.17.8" - } - }, "golang_1.18": { "tools": { "golang": { @@ -8282,27 +8229,6 @@ ] } }, - "golang_1.17.8": { - "formula": { - "sandbox_id": [ - 1274287574, - 1274292721, - 1272507071, - 1274297831 - ], - "match": "GOLANG" - }, - "executable": { - "go_1.17": [ - "bin", - "go" - ], - "gofmt_1.17": [ - "bin", - "gofmt" - ] - } - }, "golang_1.18": { "formula": { "sandbox_id": [ diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 0e9ee8babf..cd4b0e1109 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -8125,10 +8125,7 @@ GO_HOST_TARG_PARAMS=++host-os $GO_HOST_OS ++host-arch $GO_HOST_ARCH ++targ-os $G # tag:go-specific GOSTD_VERSION=1.18.2 -when ($GOSTD_VERSION == "1.17.8") { - GOSTD=contrib/go/_std/src -} -elsewhen ($GOSTD_VERSION == "1.18.2") { +when ($GOSTD_VERSION == "1.18.2") { GOSTD=contrib/go/_std_1.18/src } otherwise { |