Skip to content

Commit

Permalink
Use --build-all (#5445)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximyurchuk authored Jun 11, 2024
1 parent 58be3c4 commit 95fc262
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/test_ya/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/scripts/graph_compare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 95fc262

Please sign in to comment.