diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-06-27 14:48:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-27 14:48:03 +0300 |
commit | 187960a8fdbd70de1681b86a61b00569d0d2cf35 (patch) | |
tree | eed1237095d405a80f8c7c499bdd70b54b0cf26c | |
parent | e868cd95e540c9be2e5c8668c62170af470e7a17 (diff) | |
download | ydb-187960a8fdbd70de1681b86a61b00569d0d2cf35.tar.gz |
Deselect proto targets (#6014)
-rwxr-xr-x | .github/scripts/graph_compare.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/scripts/graph_compare.sh b/.github/scripts/graph_compare.sh index f58cbc441e..084863eaa9 100755 --- a/.github/scripts/graph_compare.sh +++ b/.github/scripts/graph_compare.sh @@ -40,7 +40,7 @@ echo Append into ya.make RECURSE_FOR_TESTS to all required tests... cat $workdir/ts2 | (echo 'RECURSE_FOR_TESTS(';cat;echo ')') >> ya.make echo Generate list of module names from the head graph based on the list of uids... -cat $workdir/graph_head | jq -r --slurpfile uids $workdir/uids_new 'select( ."target_properties"."module_type" != null) | select( any( .uid; .==$uids[] )) | .target_properties.module_dir' | sort | uniq > $workdir/modules +cat $workdir/graph_head | jq -r --slurpfile uids $workdir/uids_new 'select( ."target_properties"."module_type" != null) | select( ( ."target_properties"."module_tag" // "-" | strings | contains("proto") ) | not ) | select( any( .uid; .==$uids[] )) | .target_properties.module_dir' | sort | uniq > $workdir/modules echo Number of modules: cat $workdir/modules | wc -l |