File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 27
27
run : |
28
28
EXIT_CODE=0
29
29
# TODO: remove the swift exception from the regex when we fix generated QLdoc
30
- changed_lib_packs="$(git diff --name-only --diff-filter=ACMRT HEAD^ HEAD | { grep -Po '^(?!swift)[a-z]*/ql/lib' || true; } | sort -u)"
30
+ # TODO: remove the shared exception from the regex when coverage of qlpacks without dbschemes is supported
31
+ changed_lib_packs="$(git diff --name-only --diff-filter=ACMRT HEAD^ HEAD | { grep -Po '^(?!(swift|shared))[a-z]*/ql/lib' || true; } | sort -u)"
31
32
for pack_dir in ${changed_lib_packs}; do
32
33
lang="${pack_dir%/ql/lib}"
33
34
codeql generate library-doc-coverage --output="${RUNNER_TEMP}/${lang}-current.txt" --dir="${pack_dir}"
Original file line number Diff line number Diff line change 95
95
uses : ./.github/actions/fetch-codeql
96
96
- name : Build Query Pack
97
97
run : |
98
+ codeql pack create ../shared/ql/lib --output target/packs
98
99
codeql pack create ql/lib --output target/packs
99
100
codeql pack install ql/src
100
101
codeql pack create ql/src --output target/packs
You can’t perform that action at this time.
0 commit comments