diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-06-11 18:36:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-11 18:36:55 +0300 |
commit | 95fc2625f4cf34dd40f1b994ff44269b6c121b7d (patch) | |
tree | 841ed987494fc0bdc8bd0c6cbd5d16f2dc0be250 | |
parent | 58be3c4ff33e27b84db03e62c6f2986f68f72e6c (diff) | |
download | ydb-95fc2625f4cf34dd40f1b994ff44269b6c121b7d.tar.gz |
Use --build-all (#5445)
-rw-r--r-- | .github/actions/test_ya/action.yml | 2 | ||||
-rwxr-xr-x | .github/scripts/graph_compare.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/actions/test_ya/action.yml b/.github/actions/test_ya/action.yml index 0490cbee48..df6244a8eb 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 7b5b5f9176..f58cbc441e 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 |