Skip to content

Commit

Permalink
Update codeql.yml
Browse files Browse the repository at this point in the history
add some more "else" branches

Change-Id: Idc1154431fc284ce204a4b4fbb6462ba96b38aa9
  • Loading branch information
cooljeanius committed Oct 27, 2024
1 parent 4a402eb commit ad7c8c1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,8 @@ jobs:
popd; \
elif test -d gdb/testsuite/gdb.apple; then \
sync && echo "skipping gdb/testsuite/gdb.apple; missing Makefile?"; \
else \
sync && echo "skipping gdb/testsuite/gdb.apple; missing subdir?"; \
fi
# shellcheck disable=SC2044
for cppfile in $(find . -name '*.cpp' -type f); do \
Expand All @@ -634,7 +636,9 @@ jobs:
cp -v ./*.o .. || ls ./*.o || pwd; \
popd; \
elif test -d gdb/testsuite/gdb.base; then \
sync && echo "skipping gdb/testsuite/gdb.base"; \
sync && echo "skipping gdb/testsuite/gdb.base; missing a file?"; \
else \
sync && echo "skipping gdb/testsuite/gdb.base; missing subdir?"; \
fi
# shellcheck disable=SC2044
for cxxfile in $(find . -name '*.cxx' -type f); do \
Expand All @@ -649,6 +653,8 @@ jobs:
popd; \
elif test -d mmalloc; then \
sync && echo "skipping mmalloc; missing Makefile?"; \
else \
sync && echo "skipping mmalloc; missing subdirectory?"; \
fi
- name: Extra coverage build (Java)
Expand Down Expand Up @@ -733,8 +739,8 @@ jobs:
name: gdb-static-analysis-plists-${{ github.sha }}
# A file, directory or wildcard pattern that describes what to upload:
path: |
**/clang_static_analysis/*.plist
**/CFE_S_A/*.plist
**/clang_static_analysis/*.plist
**/CFE_S_A/*.plist
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
Expand Down

0 comments on commit ad7c8c1

Please sign in to comment.