diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2023-12-07 20:11:38 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2023-12-07 21:03:08 +0300 |
commit | 36105b0b71b37cd6ed00e664cecd5dc1f329d5fa (patch) | |
tree | c5b5a309824113e7565b7a70ad7875218e1eeba7 | |
parent | e8437d81a04fbfae5c0de3e701a3c039205eaab1 (diff) | |
download | ydb-36105b0b71b37cd6ed00e664cecd5dc1f329d5fa.tar.gz |
Intermediate changes
-rw-r--r-- | devtools/ya/opensource/ya.conf.json | 58 |
1 files changed, 57 insertions, 1 deletions
diff --git a/devtools/ya/opensource/ya.conf.json b/devtools/ya/opensource/ya.conf.json index cc82ab65ef..8de0d5f208 100644 --- a/devtools/ya/opensource/ya.conf.json +++ b/devtools/ya/opensource/ya.conf.json @@ -69,6 +69,19 @@ }, "formula": "build/external_resources/gdb/resources.json" }, + "golang": { + "executable": { + "go": [ + "bin", + "go" + ], + "gofmt": [ + "bin", + "gofmt" + ] + }, + "formula": "build/external_resources/go_tools/go1.21.json" + }, "python": { "executable": { "python": [ @@ -135,7 +148,7 @@ "params": { "c_compiler": "$(CLANG)/bin/clang", "cxx_compiler": "$(CLANG)/bin/clang++", - "gcc_version": "16.0", + "gcc_version": "16", "llvm-symbolizer": "$(CLANG)/bin/llvm-symbolizer", "match_root": "CLANG", "objcopy": "$(CLANG)/bin/llvm-objcopy", @@ -833,6 +846,49 @@ } } }, + "golang": { + "params": { + "type": "golang", + "version": "1.20.6" + }, + "platforms": [ + { + "default": true, + "host": { + "os": "LINUX" + } + }, + { + "default": true, + "host": { + "os": "DARWIN" + } + }, + { + "default": true, + "host": { + "arch": "arm64", + "os": "DARWIN" + } + }, + { + "default": true, + "host": { + "os": "WIN" + } + } + ], + "tools": { + "go": { + "bottle": "golang", + "executable": "go" + }, + "gofmt": { + "bottle": "golang", + "executable": "gofmt" + } + } + }, "python": { "platforms": [ { |