Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# CodeQL analysis scope.
#
# The exclusions below mirror the -i list in .github/workflows/cppcheck.yml,
# deliberately rather than coincidentally: these are upstream dependencies we
# track and update wholesale, not code we patch. A finding in them is fixed by
# taking a newer release, not by editing our copy, so an alert here is noise
# that dilutes the ones we can act on.
#
# Note what is NOT excluded. src/png.c (lodepng) and src/qr.c (qrcodegen) are
# single-file libraries vendored into the tree and maintained here in practice
# -- qr.c has already needed a local fix for table indexing guarded only by an
# assert, which compiles out under NDEBUG. Excluding those would have hidden a
# real bug, so they stay in scope.

name: "libdogecoin CodeQL config"

paths-ignore:
- src/secp256k1
- src/libevent
- src/intel
- src/utf8proc.c
- src/utf8proc_data.c
1 change: 1 addition & 0 deletions .github/workflows/ql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
with:
languages: ${{ matrix.language }}
queries: security-extended
config-file: ./.github/codeql/codeql-config.yml

- name: build libdogecoin
run: |
Expand Down