Skip to content

Commit

Permalink
Filter modules only in ydb (#5133)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximyurchuk authored Jun 3, 2024
1 parent 4af111a commit 421838d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/scripts/graph_compare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,14 @@ cat $workdir/graph_head | jq -r --slurpfile uids $workdir/uids_new 'select( ."ta
echo Number of modules:
cat $workdir/modules | wc -l

echo Filter only modules in ydb
cat $workdir/modules | { grep "^ydb" || true; } > $workdir/modules2

echo Number of modules:
cat $workdir/modules2 | wc -l

echo Append into ya.make RECURSE to all required modules...
cat $workdir/modules | (echo 'RECURSE(';cat;echo ')') >> ya.make
cat $workdir/modules2 | (echo 'RECURSE(';cat;echo ')') >> ya.make

echo "ya.make content:"
cat ya.make

0 comments on commit 421838d

Please sign in to comment.