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:
2424 with :
2525 key : all-queries
2626 - 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
2828 - name : compile queries - check-only
2929 # run with --check-only if running in a PR (github.sha != main)
3030 if : ${{ github.event_name == 'pull_request' }}
3131 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 }}"
3333 - name : compile queries - full
3434 # do full compile if running on main - this populates the cache
3535 if : ${{ github.event_name != 'pull_request' }}
3636 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