File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ jobs:
24
24
with :
25
25
key : all-queries
26
26
- name : check formatting
27
- run : find */ql -type f \( -name "*.qll" -o -name "*.ql" \) -print0 | xargs -0 codeql query format --check-only
27
+ run : find */ql -type f \( -name "*.qll" -o -name "*.ql" \) -print0 | xargs -0 -n 3000 -P 10 codeql query format -q --check-only
28
28
- name : compile queries - check-only
29
29
# run with --check-only if running in a PR (github.sha != main)
30
30
if : ${{ github.event_name == 'pull_request' }}
31
31
shell : bash
32
- run : codeql query compile -j0 */ql/{src,examples} --keep-going --warnings=error --check-only --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
32
+ run : codeql query compile -q - j0 */ql/{src,examples} --keep-going --warnings=error --check-only --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
33
33
- name : compile queries - full
34
34
# do full compile if running on main - this populates the cache
35
35
if : ${{ github.event_name != 'pull_request' }}
36
36
shell : bash
37
- run : codeql query compile -j0 */ql/{src,examples} --keep-going --warnings=error --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
37
+ run : codeql query compile -q - j0 */ql/{src,examples} --keep-going --warnings=error --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}"
You can’t perform that action at this time.
0 commit comments