Skip to content

Commit

Permalink
GithubCI: ignore libclang-cpp.so in system-libs test
Browse files Browse the repository at this point in the history
For some reason, the debuginfod server on Fedora 37 hangs when trying
to fetch data for libclang-cpp.15.so. It's not critical for this test,
so just don't parse that library.
  • Loading branch information
hainest committed May 2, 2024
1 parent a29f32a commit b1365d1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/system-libs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
for dir in /usr/lib /usr/lib64; do \
for file in $(find $dir -type f -name "*.so.*"); do \
if ! expr "$file" : ".*\.hmac" >/dev/null 2>&1; then \
if [[ $f =~ "libclang-cpp.so" ]]; then continue; fi\
echo $file; \
./simpleParser $file; \
fi \
Expand Down

0 comments on commit b1365d1

Please sign in to comment.