Skip to content

Commit 78cedf7

Browse files
committed
Filter modules only in ydb
1 parent 0964dfd commit 78cedf7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/scripts/graph_compare.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,14 @@ cat $workdir/graph_head | jq -r --slurpfile uids $workdir/uids_new 'select( ."ta
4545
echo Number of modules:
4646
cat $workdir/modules | wc -l
4747

48+
echo Filter only modules in ydb
49+
cat $workdir/modules | grep "^ydb" > cat $workdir/modules2
50+
51+
echo Number of modules:
52+
cat $workdir/modules2 | wc -l
53+
4854
echo Append into ya.make RECURSE to all required modules...
49-
cat $workdir/modules | (echo 'RECURSE(';cat;echo ')') >> ya.make
55+
cat $workdir/modules2 | (echo 'RECURSE(';cat;echo ')') >> ya.make
5056

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

0 commit comments

Comments
 (0)