diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-10-16 16:07:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-16 16:07:26 +0300 |
commit | 818fa30ad8485dfb63be2d0961a148ba4b1c12e6 (patch) | |
tree | 45f05d50717765aac0efd93d99986690a766d5a0 | |
parent | 362f6f529c855b25a0e48346b6419ba5cfd475bb (diff) | |
download | ydb-818fa30ad8485dfb63be2d0961a148ba4b1c12e6.tar.gz |
ya.make fixes (missing RECURSE) (#10454)
-rw-r--r-- | ydb/core/external_sources/ya.make | 1 | ||||
-rw-r--r-- | ydb/core/fq/libs/row_dispatcher/ya.make | 2 | ||||
-rw-r--r-- | ydb/core/persqueue/ya.make | 8 | ||||
-rw-r--r-- | ydb/core/tx/ya.make | 1 | ||||
-rw-r--r-- | ydb/core/viewer/ya.make | 5 | ||||
-rw-r--r-- | ydb/library/workload/ya.make | 11 | ||||
-rw-r--r-- | ydb/library/ya.make | 2 | ||||
-rw-r--r-- | ydb/library/yql/dq/actors/ya.make | 1 | ||||
-rw-r--r-- | ydb/library/yql/udfs/common/math/ya.make | 3 | ||||
-rw-r--r-- | ydb/public/lib/ydb_cli/commands/ya.make | 9 | ||||
-rw-r--r-- | ydb/services/persqueue_cluster_discovery/ya.make | 4 | ||||
-rw-r--r-- | ydb/tests/fq/ya.make | 11 |
12 files changed, 52 insertions, 6 deletions
diff --git a/ydb/core/external_sources/ya.make b/ydb/core/external_sources/ya.make index 2d22e3c345..fe347a65d9 100644 --- a/ydb/core/external_sources/ya.make +++ b/ydb/core/external_sources/ya.make @@ -34,4 +34,5 @@ RECURSE_FOR_TESTS( RECURSE( hive_metastore + object_storage ) diff --git a/ydb/core/fq/libs/row_dispatcher/ya.make b/ydb/core/fq/libs/row_dispatcher/ya.make index 68f9d9aeea..d4a28961a6 100644 --- a/ydb/core/fq/libs/row_dispatcher/ya.make +++ b/ydb/core/fq/libs/row_dispatcher/ya.make @@ -35,6 +35,8 @@ YQL_LAST_ABI_VERSION() END() +RECURSE(purecalc_no_pg_wrapper) + IF(NOT EXPORT_CMAKE) RECURSE_FOR_TESTS( ut diff --git a/ydb/core/persqueue/ya.make b/ydb/core/persqueue/ya.make index 0302bab1a9..f952df8963 100644 --- a/ydb/core/persqueue/ya.make +++ b/ydb/core/persqueue/ya.make @@ -76,6 +76,14 @@ PEERDIR( END() +RECURSE( + codecs + config + events + partition_key_range + writer +) + RECURSE_FOR_TESTS( ut dread_cache_service/ut diff --git a/ydb/core/tx/ya.make b/ydb/core/tx/ya.make index eff0166dbb..b3fcead3c1 100644 --- a/ydb/core/tx/ya.make +++ b/ydb/core/tx/ya.make @@ -27,6 +27,7 @@ RECURSE( columnshard coordinator datashard + locks long_tx_service mediator replication diff --git a/ydb/core/viewer/ya.make b/ydb/core/viewer/ya.make index 70f044b793..0b1c4766bc 100644 --- a/ydb/core/viewer/ya.make +++ b/ydb/core/viewer/ya.make @@ -1,3 +1,8 @@ +RECURSE( + json + yaml +) + RECURSE_FOR_TESTS( ut ) diff --git a/ydb/library/workload/ya.make b/ydb/library/workload/ya.make index 3abfcf3727..8ebc319161 100644 --- a/ydb/library/workload/ya.make +++ b/ydb/library/workload/ya.make @@ -10,3 +10,14 @@ PEERDIR( ) END() + +RECURSE( + abstract + benchmark_base + clickbench + kv + stock + tpc_base + tpcds + tpch +)
\ No newline at end of file diff --git a/ydb/library/ya.make b/ydb/library/ya.make index a9ab9de430..9d9571a157 100644 --- a/ydb/library/ya.make +++ b/ydb/library/ya.make @@ -12,6 +12,7 @@ RECURSE( dynumber folder_service formats + fyamlcpp grpc http_proxy keys @@ -26,6 +27,7 @@ RECURSE( persqueue pretty_types_print protobuf_printer + rewrapper query_actor schlab security diff --git a/ydb/library/yql/dq/actors/ya.make b/ydb/library/yql/dq/actors/ya.make index 5c67d38334..a49cec21db 100644 --- a/ydb/library/yql/dq/actors/ya.make +++ b/ydb/library/yql/dq/actors/ya.make @@ -14,6 +14,7 @@ PEERDIR( END() RECURSE( + common compute input_transforms spilling diff --git a/ydb/library/yql/udfs/common/math/ya.make b/ydb/library/yql/udfs/common/math/ya.make index 2f5e1dbebf..567dc69c31 100644 --- a/ydb/library/yql/udfs/common/math/ya.make +++ b/ydb/library/yql/udfs/common/math/ya.make @@ -82,6 +82,9 @@ ELSE () END() ENDIF () +RECURSE( + lib +) RECURSE_FOR_TESTS( test diff --git a/ydb/public/lib/ydb_cli/commands/ya.make b/ydb/public/lib/ydb_cli/commands/ya.make index 0ea639fe44..bcdb563563 100644 --- a/ydb/public/lib/ydb_cli/commands/ya.make +++ b/ydb/public/lib/ydb_cli/commands/ya.make @@ -65,6 +65,11 @@ PEERDIR( END() -RECURSE_FOR_TESTS( - topic_workload/ut +RECURSE( + command_base + interactive + sdk_core_access + topic_workload + transfer_workload + ydb_discovery ) diff --git a/ydb/services/persqueue_cluster_discovery/ya.make b/ydb/services/persqueue_cluster_discovery/ya.make index 40d0e4470e..932904919a 100644 --- a/ydb/services/persqueue_cluster_discovery/ya.make +++ b/ydb/services/persqueue_cluster_discovery/ya.make @@ -24,6 +24,10 @@ PEERDIR( END() +RECURSE( + cluster_ordering +) + RECURSE_FOR_TESTS( ut ) diff --git a/ydb/tests/fq/ya.make b/ydb/tests/fq/ya.make index b30416c698..0e725f021f 100644 --- a/ydb/tests/fq/ya.make +++ b/ydb/tests/fq/ya.make @@ -1,14 +1,17 @@ -RECURSE_FOR_TESTS( +RECURSE( common - control_plane_storage generic + pq_async_io + yt +) + +RECURSE_FOR_TESTS( + control_plane_storage http_api mem_alloc multi_plane plans - pq_async_io restarts s3 yds - yt ) |