Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/build_ya/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ runs:
if [ "${{ inputs.put_build_results_to_cache }}" = "true" ]; then
extra_params+=(--bazel-remote-username "${{ inputs.bazel_remote_username }}")
extra_params+=(--bazel-remote-password "${{ inputs.bazel_remote_password }}")
extra_params+=(--bazel-remote-put --dist-cache-evict-bins --add-result .o --add-result .a)
extra_params+=(--bazel-remote-put --dist-cache-max-file-size=209715200 --add-result .o --add-result .a)
fi

case "${{ inputs.build_preset }}" in
Expand Down
3 changes: 3 additions & 0 deletions ydb/core/actorlib_impl/actor_activity_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@ class TTestActor : public TActor<TTestActor> {

} // namespace NActors

int foo_bar();

Y_UNIT_TEST_SUITE(TActorActivity) {
using namespace NActors;

Y_UNIT_TEST(Basic) {
foo_bar();
TAutoPtr<IActor> actor = new TTestActor();
const ui32 activityIndex = actor->GetActivityType();

Expand Down