diff --git a/.github/actions/test_ya/action.yml b/.github/actions/test_ya/action.yml index 0490cbee485f..df6244a8ebd0 100644 --- a/.github/actions/test_ya/action.yml +++ b/.github/actions/test_ya/action.yml @@ -206,7 +206,7 @@ runs: fi # Also build targets which are not in tests' dependencies - params+=(--no-strip-idle-build-results) + params+=(--build-all) echo "::debug::get version" ./ya --version diff --git a/.github/scripts/graph_compare.sh b/.github/scripts/graph_compare.sh index 7b5b5f9176cb..f58cbc441e2a 100755 --- a/.github/scripts/graph_compare.sh +++ b/.github/scripts/graph_compare.sh @@ -10,12 +10,12 @@ echo Workdir: $workdir echo Checkout base commit... git checkout $1 echo Build graph for base commit... -./ya make -Gj0 -ttt ydb --build release -k --cache-tests --no-strip-idle-build-results | jq '.graph[]' > $workdir/graph_base +./ya make -Gj0 -ttt ydb --build release -k --cache-tests --build-all | jq '.graph[]' > $workdir/graph_base echo Checkout head commit... git checkout $2 echo Build graph for head commit... -./ya make -Gj0 -ttt ydb --build release -k --cache-tests --no-strip-idle-build-results | jq '.graph[]' > $workdir/graph_head +./ya make -Gj0 -ttt ydb --build release -k --cache-tests --build-all | jq '.graph[]' > $workdir/graph_head echo Generate lists of uids for base and head... cat $workdir/graph_base | jq '.uid' > $workdir/uid_base