We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3891e4 commit 22f4c19Copy full SHA for 22f4c19
1 file changed
.github/workflows/cpp-ci-serial-programs-base.yml
@@ -149,7 +149,10 @@ jobs:
149
EOF
150
151
files=$(jq --raw-output '.[].file' SerialPrograms/bin/compile_commands.json)
152
- echo "$files" | xargs clang-query -p SerialPrograms/bin/ -f query.txt >> clang-query-stdout.txt
+ for file in $files; do
153
+ echo "Processing: $file"
154
+ clang-query -p SerialPrograms/bin/ -f query.txt "$file" >> clang-query-stdout.txt
155
+ done
156
157
FOUND_FORBIDDEN=0
158
if grep --quiet "Binding for 'path_error'" clang-query-stdout.txt; then
0 commit comments