We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 30451ee + a1564de commit 08240e2Copy full SHA for 08240e2
1 file changed
.github/workflows/atm-check-query-suite.yml
@@ -13,7 +13,7 @@ on:
13
14
jobs:
15
atm-check-query-suite:
16
- runs-on: ubuntu-latest
+ runs-on: ubuntu-latest-xl
17
18
steps:
19
- uses: actions/checkout@v3
@@ -23,6 +23,12 @@ jobs:
23
with:
24
channel: release
25
26
+ - name: Cache compilation cache
27
+ id: query-cache
28
+ uses: ./.github/actions/cache-query-compilation
29
+ with:
30
+ key: atm-suite
31
+
32
- name: Install ATM model
33
run: |
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 \
64
-vv \
65
+ --compilation-cache "${{ steps.query-cache.outputs.cache-dir }}" \
66
-- \
67
"${DB_PATH}" \
68
"${QUERY_PACK}/${QUERY_SUITE}"
0 commit comments