File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 13
13
14
14
jobs :
15
15
atm-check-query-suite :
16
- runs-on : ubuntu-latest
16
+ runs-on : ubuntu-latest-xl
17
17
18
18
steps :
19
19
- uses : actions/checkout@v3
23
23
with :
24
24
channel : release
25
25
26
+ - name : Cache compilation cache
27
+ id : query-cache
28
+ uses : ./.github/actions/cache-query-compilation
29
+ with :
30
+ key : atm-suite
31
+
26
32
- name : Install ATM model
27
33
run : |
28
34
set -exu
@@ -50,10 +56,13 @@ jobs:
50
56
echo "SARIF_PATH=${SARIF_PATH}" >> "${GITHUB_ENV}"
51
57
52
58
codeql database analyze \
59
+ --threads=0 \
60
+ --ram 50000 \
53
61
--format sarif-latest \
54
62
--output "${SARIF_PATH}" \
55
63
--sarif-group-rules-by-pack \
56
64
-vv \
65
+ --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}" \
57
66
-- \
58
67
"${DB_PATH}" \
59
68
"${QUERY_PACK}/${QUERY_SUITE}"
You can’t perform that action at this time.
0 commit comments