-
Notifications
You must be signed in to change notification settings - Fork 600
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ttl-tiering
- Loading branch information
Showing
1,383 changed files
with
103,752 additions
and
21,246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
echo "No new commits on the main branch to merge, exiting" | ||
exit 0 | ||
fi | ||
git clone -b main --shallow-exclude cmakebuild https://[email protected]/$REPO.git ydb | ||
git clone -b main https://[email protected]/$REPO.git ydb | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Alexander Smirnov" | ||
cd ydb | ||
|
@@ -40,11 +40,7 @@ jobs: | |
echo "Merge did not bring any changes, exiting" | ||
exit | ||
fi | ||
# Generate ydb/core/base/generate with python codegen under ya | ||
./ya make ydb/core/base/generated/ | ||
ydb/core/base/generated/codegen/codegen ydb/core/base/generated/runtime_feature_flags.h.in ydb/core/base/generated/runtime_feature_flags.h | ||
ydb/core/base/generated/codegen/codegen ydb/core/base/generated/runtime_feature_flags.cpp.in ydb/core/base/generated/runtime_feature_flags.cpp | ||
# Generate cmakelists using pregenerated ydb/core/base/generated/runtime_feature_flags.* | ||
# Generate cmakelists | ||
./generate_cmake -k | ||
echo ${mainsha} > ydb/ci/cmakegen.txt | ||
git add . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"black": "build/config/tests/py_style/config.toml", | ||
"dummy_linter": "build/config/tests/py_style/dummy_linter_config.json", | ||
"flake8": "build/config/tests/flake8/flake8.conf", | ||
"py2_flake8": "build/config/tests/flake8/flake8.conf", | ||
"black": "build/config/tests/py_style/config.toml", | ||
"dummy_linter": "build/config/tests/py_style/dummy_linter_config.json" | ||
"ruff": "build/config/tests/ruff/ruff.toml" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"by_platform": { | ||
"darwin": { | ||
"uri": "sbr:7522713648" | ||
"uri": "sbr:7570915389" | ||
}, | ||
"darwin-arm64": { | ||
"uri": "sbr:7522713246" | ||
"uri": "sbr:7570915039" | ||
}, | ||
"linux": { | ||
"uri": "sbr:7522714449" | ||
"uri": "sbr:7570916388" | ||
}, | ||
"linux-aarch64": { | ||
"uri": "sbr:7522712750" | ||
"uri": "sbr:7570914495" | ||
}, | ||
"win32-clang-cl": { | ||
"uri": "sbr:7522714072" | ||
"uri": "sbr:7570915900" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"by_platform": { | ||
"darwin": { | ||
"uri": "sbr:7522728679" | ||
"uri": "sbr:7570909413" | ||
}, | ||
"darwin-arm64": { | ||
"uri": "sbr:7522728262" | ||
"uri": "sbr:7570909172" | ||
}, | ||
"linux": { | ||
"uri": "sbr:7522729575" | ||
"uri": "sbr:7570910246" | ||
}, | ||
"linux-aarch64": { | ||
"uri": "sbr:7522727825" | ||
"uri": "sbr:7570908880" | ||
}, | ||
"win32-clang-cl": { | ||
"uri": "sbr:7522729138" | ||
"uri": "sbr:7570909765" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"by_platform": { | ||
"darwin-arm64": { | ||
"uri": "sbr:7421008516" | ||
}, | ||
"darwin-x86_64": { | ||
"uri": "sbr:7421180051" | ||
}, | ||
"linux-aarch64": { | ||
"uri": "sbr:7421207790" | ||
}, | ||
"linux-x86_64": { | ||
"uri": "sbr:7421606584" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
RESOURCES_LIBRARY() | ||
|
||
TOOLCHAIN(mold) | ||
VERSION(2.34.1) | ||
|
||
DECLARE_EXTERNAL_HOST_RESOURCES_BUNDLE_BY_JSON(MOLD_ROOT mold.json) | ||
|
||
LDFLAGS( | ||
-fuse-ld=mold | ||
--ld-path=${MOLD_ROOT_RESOURCE_GLOBAL}/bin/ld.mold | ||
) | ||
|
||
END() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
IF (HOST_OS_DARWIN AND HOST_ARCH_X86_64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538003967) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573697889) | ||
ELSEIF (HOST_OS_DARWIN AND HOST_ARCH_ARM64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538003163) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573697448) | ||
ELSEIF (HOST_OS_LINUX AND HOST_ARCH_X86_64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538005601) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573699373) | ||
ELSEIF (HOST_OS_LINUX AND HOST_ARCH_AARCH64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538002456) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573696869) | ||
ELSEIF (HOST_OS_WINDOWS AND HOST_ARCH_X86_64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7538004884) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573698723) | ||
|
||
ENDIF() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
IF (HOST_OS_DARWIN AND HOST_ARCH_X86_64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537936527) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573693387) | ||
ELSEIF (HOST_OS_DARWIN AND HOST_ARCH_ARM64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537935343) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573692847) | ||
ELSEIF (HOST_OS_LINUX AND HOST_ARCH_X86_64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537937986) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573694143) | ||
ELSEIF (HOST_OS_LINUX AND HOST_ARCH_AARCH64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537934380) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573692312) | ||
ELSEIF (HOST_OS_WINDOWS AND HOST_ARCH_X86_64) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7537937248) | ||
DECLARE_EXTERNAL_RESOURCE(TEST_TOOL_HOST sbr:7573693816) | ||
|
||
ENDIF() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.