diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-05-05 12:27:18 +0300 |
---|---|---|
committer | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-05-05 12:27:18 +0300 |
commit | 304f49aa588960c10859c290d183a4a90c10889f (patch) | |
tree | 4f2ab6bcc84d5c2eaed2de1900fb5b692437d1ac | |
parent | da953649e9d87bcad124940f6c075283b187a1a9 (diff) | |
download | ydb-304f49aa588960c10859c290d183a4a90c10889f.tar.gz |
intermediate changes
ref:c460212e94b2a8b35b1a37688758cecaffd58920
-rw-r--r-- | build/config/tests/clang_tidy/config.yaml | 8 | ||||
-rw-r--r-- | build/platform/test_tool/host.ya.make.inc | 20 | ||||
-rw-r--r-- | build/ya.conf.json | 582 |
3 files changed, 583 insertions, 27 deletions
diff --git a/build/config/tests/clang_tidy/config.yaml b/build/config/tests/clang_tidy/config.yaml index a0edaf7e133..77fdff1d237 100644 --- a/build/config/tests/clang_tidy/config.yaml +++ b/build/config/tests/clang_tidy/config.yaml @@ -19,14 +19,10 @@ CheckOptions: value: _ - key: readability-identifier-naming.FunctionCase value: CamelCase + - key: readability-identifier-naming.ClassMethodCase + value: CamelCase # do not tide public begin / end methods to workaround clang-tidy bug in range-based for loops - key: readability-identifier-naming.PublicMethodIgnoredRegexp value: "(begin|end|empty|size|ysize|front|back)" - - key: readability-identifier-naming.PublicMethodCase - value: CamelCase - - key: readability-identifier-naming.ProtectedMethodCase - value: CamelCase - - key: readability-identifier-naming.PrivateMethodCase - value: CamelCase - key: readability-identifier-naming.MacroDefinitionCase value: UPPER_CASE diff --git a/build/platform/test_tool/host.ya.make.inc b/build/platform/test_tool/host.ya.make.inc index 78371a44934..77642f2cc3c 100644 --- a/build/platform/test_tool/host.ya.make.inc +++ b/build/platform/test_tool/host.ya.make.inc @@ -1,16 +1,16 @@ IF (HOST_OS_DARWIN AND HOST_ARCH_X86_64) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3048321355) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3048254257) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3059893033) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3059848422) ELSEIF (HOST_OS_DARWIN AND HOST_ARCH_ARM64) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3048319310) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3048253463) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3059891874) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3059847210) ELSEIF (HOST_OS_LINUX AND HOST_ARCH_PPC64LE) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3048320394) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3048253844) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3059892576) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3059847871) ELSEIF (HOST_OS_LINUX AND HOST_ARCH_X86_64) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3048322546) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3048254620) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3059893339) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3059848779) ELSEIF (HOST_OS_WINDOWS AND HOST_ARCH_X86_64) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3048318389) - DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3048253050) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:3059891351) + DECLARE_EXTERNAL_RESOURCE(TEST_TOOL3_HOST sbr:3059846574) ENDIF() diff --git a/build/ya.conf.json b/build/ya.conf.json index 307b136843c..dede0026b54 100644 --- a/build/ya.conf.json +++ b/build/ya.conf.json @@ -2141,6 +2141,512 @@ "gcc_version": "12.0" } }, + "clang14": { + "tools": { + "c++": { + "bottle": "clang14", + "executable": "c++" + }, + "c++filt": { + "bottle": "clang14", + "executable": "c++filt" + }, + "cc": { + "bottle": "clang14", + "executable": "cc" + }, + "clang-rename": { + "bottle": "clang14", + "executable": "clang-rename" + }, + "gcov": { + "bottle": "clang14", + "executable": "llvm-gcov" + }, + "llvm-cov": { + "bottle": "clang14", + "executable": "llvm-cov" + }, + "llvm-profdata": { + "bottle": "clang14", + "executable": "llvm-profdata" + }, + "llvm-symbolizer": { + "bottle": "clang14", + "executable": "llvm-symbolizer" + }, + "nm": { + "bottle": "clang14", + "executable": "llvm-nm" + }, + "strip": { + "bottle": "clang14", + "executable": "llvm-strip" + }, + "objcopy": { + "bottle": "clang14", + "executable": "llvm-objcopy" + } + }, + "platforms": [ + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "x86_64" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "aarch64" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "ppc64le" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "power9le" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "DARWIN", + "arch": "x86_64" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "DARWIN", + "arch": "arm64" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "IOS", + "arch": "i386" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "IOS", + "arch": "x86_64" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "IOS", + "arch": "armv7" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "IOS", + "arch": "arm64" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "IOSSIM", + "arch": "arm64" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "YOCTO", + "arch": "armv7a" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "LINUX", + "arch": "x86_64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "LINUX", + "arch": "aarch64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "LINUX", + "arch": "ppc64le" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "LINUX", + "arch": "power9le" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "DARWIN", + "arch": "x86_64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "DARWIN", + "arch": "arm64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "IOS", + "arch": "i386" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "IOS", + "arch": "x86_64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "IOS", + "arch": "armv7" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "IOS", + "arch": "arm64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN" + }, + "target": { + "os": "IOSSIM", + "arch": "arm64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "LINUX", + "arch": "x86_64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "LINUX", + "arch": "aarch64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "LINUX", + "arch": "ppc64le" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "LINUX", + "arch": "power9le" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "DARWIN", + "arch": "x86_64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "DARWIN", + "arch": "arm64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "IOS", + "arch": "i386" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "IOS", + "arch": "x86_64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "IOS", + "arch": "armv7" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "IOS", + "arch": "arm64" + }, + "default": false + }, + { + "host": { + "os": "DARWIN", + "arch": "arm64" + }, + "target": { + "os": "IOSSIM", + "arch": "arm64" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "armv7a" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "armv7a_cortex_a9" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "armv7ahf_cortex_a35" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "armv7ahf_cortex_a53" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "armv7ahf" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "armv8a_cortex_a35" + }, + "default": false + }, + { + "host": { + "os": "LINUX" + }, + "target": { + "os": "LINUX", + "arch": "armv8a_cortex_a53" + }, + "default": false + }, + { + "host": { + "os": "LINUX", + "arch": "ppc64le" + }, + "target": { + "os": "LINUX", + "arch": "ppc64le" + }, + "default": false + }, + { + "host": { + "os": "LINUX", + "arch": "ppc64le" + }, + "target": { + "os": "LINUX", + "arch": "power9le" + }, + "default": false + } + ], + "params": { + "type": "clang", + "match_root": "CLANG", + "werror_mode": "all", + "c_compiler": "$(CLANG)/bin/clang", + "cxx_compiler": "$(CLANG)/bin/clang++", + "llvm-symbolizer": "$(CLANG)/bin/llvm-symbolizer", + "objcopy": "$(CLANG)/bin/llvm-objcopy", + "simctl": "$(XCODE_TOOLS_ROOT-sbr:799017771)/Xcode/SystemRoot/PrivateFrameworks/CoreSimulator.framework/Resources/bin/simctl", + "profiles": "$(XCODE_TOOLS_ROOT-sbr:799017771)/Xcode/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles", + "strip": "$(CLANG)/bin/llvm-strip", + "gcc_version": "14.0" + } + }, "local": { "tools": { "c++": { @@ -6411,6 +6917,60 @@ ] } }, + "clang14": { + "formula": { + "sandbox_id": [ + 1299367207 + ], + "match": "CLANG" + }, + "executable": { + "c++": [ + "bin", + "clang++" + ], + "c++filt": [ + "bin", + "llvm-cxxfilt" + ], + "cc": [ + "bin", + "clang" + ], + "clang-rename": [ + "bin", + "clang-rename" + ], + "llvm-gcov": [ + "bin", + "llvm-gcov" + ], + "llvm-cov": [ + "bin", + "llvm-cov" + ], + "llvm-profdata": [ + "bin", + "llvm-profdata" + ], + "llvm-symbolizer": [ + "bin", + "llvm-symbolizer" + ], + "llvm-nm": [ + "bin", + "llvm-nm" + ], + "llvm-strip": [ + "bin", + "llvm-strip" + ], + "llvm-objcopy": [ + "bin", + "llvm-objcopy" + ] + } + }, "xcode_12_5": { "formula": { "sandbox_id": [ @@ -7097,7 +7657,7 @@ "yp-util": { "formula": { "sandbox_id": [ - 1251284406 + 1299398111 ], "match": "yp_util" }, @@ -7110,7 +7670,7 @@ "yp": { "formula": { "sandbox_id": [ - 1251285389 + 1299397784 ], "match": "YP" }, @@ -7479,7 +8039,7 @@ }, "horadric": { "formula": { - "sandbox_id": 1297573487, + "sandbox_id": 1299456562, "match": "horadric" }, "executable": { @@ -7622,7 +8182,7 @@ }, "apphost": { "formula": { - "sandbox_id": 1298336900, + "sandbox_id": 1299456931, "match": "app_host_launcher" }, "executable": { @@ -8279,7 +8839,7 @@ }, "bigb_request": { "formula": { - "sandbox_id": 1298337230, + "sandbox_id": 1299456328, "match": "bb_requester" }, "executable": { @@ -8290,7 +8850,7 @@ }, "bigb_hitlog_analyser": { "formula": { - "sandbox_id": 1298336678, + "sandbox_id": 1299460805, "match": "hitlog_analyser" }, "executable": { @@ -8312,7 +8872,7 @@ }, "bigb_bb_cluster_analyzer": { "formula": { - "sandbox_id": 1298337232, + "sandbox_id": 1299456524, "match": "bb_cluster_analyzer" }, "executable": { @@ -8358,7 +8918,7 @@ }, "caesar_yt_sync": { "formula": { - "sandbox_id": 1298336410, + "sandbox_id": 1299456915, "match": "yt_sync" }, "executable": { @@ -8369,7 +8929,7 @@ }, "caesar_lookup_profile": { "formula": { - "sandbox_id": 1298337379, + "sandbox_id": 1299460651, "match": "lookup_profile" }, "executable": { @@ -8380,7 +8940,7 @@ }, "exp_stats": { "formula": { - "sandbox_id": 1297573503, + "sandbox_id": 1299456739, "match": "exp_stats" }, "executable": { @@ -8424,7 +8984,7 @@ }, "caesar_profile_size_analyzer": { "formula": { - "sandbox_id": 1298337446, + "sandbox_id": 1299456948, "match": "profile_size_analyzer" }, "executable": { |