diff options
author | uzhas <uzhas@ydb.tech> | 2023-08-24 17:06:48 +0300 |
---|---|---|
committer | uzhas <uzhas@ydb.tech> | 2023-08-24 17:22:06 +0300 |
commit | 2491ba899bf158101666fd335447efd32e27cc34 (patch) | |
tree | 81d562b35540926dfdf06e561e3b1875009c7b59 /library/go | |
parent | 9b8239370c4354cbd86f763d546469a7b3da3538 (diff) | |
download | ydb-2491ba899bf158101666fd335447efd32e27cc34.tar.gz |
ydb: support go code in OSS
Diffstat (limited to 'library/go')
-rw-r--r-- | library/go/core/buildinfo/buildinfo.go | 2 | ||||
-rw-r--r-- | library/go/core/buildinfo/test/main.go | 2 | ||||
-rw-r--r-- | library/go/test/yatest/env.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/library/go/core/buildinfo/buildinfo.go b/library/go/core/buildinfo/buildinfo.go index 88b7d52c9e..fe6b8286cb 100644 --- a/library/go/core/buildinfo/buildinfo.go +++ b/library/go/core/buildinfo/buildinfo.go @@ -14,7 +14,7 @@ type BuildInfo struct { // // Other info: // Build by: prime - // Top src dir: /home/prime/Code/go/src/a.yandex-team.ru + // Top src dir: /home/prime/Code/go/src/github.com/ydb-platform/ydb // Top build dir: /home/prime/.ya/build/build_root/qbh0/000002 // Hostname: 77.88.18.146-red.dhcp.yndx.net // Host information: diff --git a/library/go/core/buildinfo/test/main.go b/library/go/core/buildinfo/test/main.go index a17ac12749..7b13900295 100644 --- a/library/go/core/buildinfo/test/main.go +++ b/library/go/core/buildinfo/test/main.go @@ -3,7 +3,7 @@ package main import ( "fmt" - "a.yandex-team.ru/library/go/core/buildinfo" + "github.com/ydb-platform/ydb/library/go/core/buildinfo" ) func main() { diff --git a/library/go/test/yatest/env.go b/library/go/test/yatest/env.go index d655e4c6da..fd2bacbc26 100644 --- a/library/go/test/yatest/env.go +++ b/library/go/test/yatest/env.go @@ -149,7 +149,7 @@ func CxxCompilerPath() string { // Warn: if you are using build with system python (-DUSE_SYSTEM_PYTHON=X) beware that some python bundles // are built in a stripped-down form that is needed for building, not running tests. // See comments in the file below to find out which version of python is compatible with tests. -// https://a.yandex-team.ru/arc/trunk/arcadia/build/platform/python/resources.inc +// https://github.com/ydb-platform/ydb/arc/trunk/arcadia/build/platform/python/resources.inc func PythonBinPath() string { lazyInit() verifyContext() |