File tree Expand file tree Collapse file tree 4 files changed +5
-11
lines changed Expand file tree Collapse file tree 4 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,6 @@ LANGUAGE=${2}
6
6
# to stop recompiling all queries if multiple files are modified
7
7
LIBRARY_SCANNED=false
8
8
9
- echo " [+] Cloning CodeQL"
10
- gh repo clone github/codeql
11
-
12
9
echo " [+] Compiling all queries in $LANGUAGE "
13
10
gh codeql query compile \
14
11
--threads=0 --check-only \
Original file line number Diff line number Diff line change @@ -9,9 +9,6 @@ if [[ ! -d ./${LANGUAGE}/test/ ]]; then
9
9
exit 0
10
10
fi
11
11
12
- echo " [+] Cloning CodeQL"
13
- gh repo clone github/codeql
14
-
15
12
echo " [+] Compiling all queries in $LANGUAGE "
16
13
gh codeql query compile \
17
14
--threads=0 --check-only \
Original file line number Diff line number Diff line change @@ -36,11 +36,11 @@ jobs:
36
36
gh repo clone github/codeql
37
37
gh extension install github/gh-codeql
38
38
gh codeql pack download "codeql/${{ matrix.language }}-queries"
39
- gh codeql pack install --additional-packs=./codeql/misc "${{ matrix.language }}/ext/"
40
- gh codeql pack install --additional-packs=./codeql/misc "${{ matrix.language }}/ext_library_sources/"
41
- gh codeql pack install --additional-packs=./codeql/misc "${{ matrix.language }}/lib"
42
- gh codeql pack install --additional-packs=./codeql/misc "${{ matrix.language }}/src"
43
- gh codeql pack install --additional-packs=./codeql/misc "${{ matrix.language }}/test"
39
+ gh codeql pack install "${{ matrix.language }}/ext/"
40
+ gh codeql pack install "${{ matrix.language }}/ext_library_sources/"
41
+ gh codeql pack install "${{ matrix.language }}/lib"
42
+ gh codeql pack install "${{ matrix.language }}/src"
43
+ gh codeql pack install "${{ matrix.language }}/test"
44
44
45
45
- name : Compile Queries
46
46
if : steps.changes.outputs.src == 'true'
You can’t perform that action at this time.
0 commit comments